Class ContainerIndexChangedEventArgs
Provides data for the ContainerIndexChanged event.
public class ContainerIndexChangedEventArgs : EventArgs
- Inheritance
-
ContainerIndexChangedEventArgs
- Inherited Members
Constructors
ContainerIndexChangedEventArgs(Control, int, int)
public ContainerIndexChangedEventArgs(Control container, int oldIndex, int newIndex)
Parameters
Properties
Container
Get the container for which the index changed.
public Control Container { get; }
Property Value
NewIndex
Gets the index of the container after the change.
public int NewIndex { get; }
Property Value
OldIndex
Gets the index of the container before the change.
public int OldIndex { get; }