File: System\Windows\Automation\StructureChangedEventArgs.cs
Project: UIAutomationTypes.dll (UIAutomationTypes)
#region Assembly UIAutomationTypes, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\UIAutomationTypes.dll
#endregion
 
namespace System.Windows.Automation
{
    public sealed class StructureChangedEventArgs : AutomationEventArgs
    {
        public StructureChangedEventArgs(StructureChangeType structureChangeType, int[] runtimeId);
 
        public StructureChangeType StructureChangeType { get; }
 
        public int[] GetRuntimeId();
    }
}