System.Windows.Automation.StructureChangedEventArgs.StructureChangedEventArgs C# (CSharp) Method

StructureChangedEventArgs() public method

public StructureChangedEventArgs ( StructureChangeType structureChangeType, int runtimeId ) : System
structureChangeType StructureChangeType
runtimeId int
return System
        public StructureChangedEventArgs(StructureChangeType structureChangeType, int[] runtimeId)
            : base(AutomationElementIdentifiers.StructureChangedEvent)
        {
            if (runtimeId == null)
            {
                throw new ArgumentNullException("runtimeId");
            }
            this._structureChangeType = structureChangeType;
            this._runtimeID = (int[])runtimeId.Clone();
        }