Class SelectionChangingEventArgs
An event arguments of SelectionChangingEventHandler
Inheritance
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class SelectionChangingEventArgs : CancelEventArgs
Constructors
SelectionChangingEventArgs(Int32, Int32, Int32, Int32)
Initializes a new instance of the SelectionChangingEventArgs class.
Declaration
public SelectionChangingEventArgs(int oldSelectionStart, int oldSelectionLength, int newSelectionStart, int newSelectionLength)
Parameters
System.Int32
oldSelectionStart
The old selection start. |
System.Int32
oldSelectionLength
Old length of the selection. |
System.Int32
newSelectionStart
The new selection start. |
System.Int32
newSelectionLength
New length of the selection. |
Properties
NewSelectionLength
Gets the new length of the selection.
Declaration
public int NewSelectionLength { get; }
Property Value
System.Int32
The new length of the selection. |
NewSelectionStart
Gets the new selection start.
Declaration
public int NewSelectionStart { get; }
Property Value
System.Int32
|
OldSelectionLength
Gets the old length of the selection.
Declaration
public int OldSelectionLength { get; }
Property Value
System.Int32
The old length of the selection. |
OldSelectionStart
Gets the old selection start.
Declaration
public int OldSelectionStart { get; }
Property Value
System.Int32
|