An event arguments of SelectionChangingEventHandler
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.UI.dll
Syntax:
C#
public class SelectionChangingEventArgs : CancelEventArgs
Inheritance: objectEventArgsCancelEventArgsSelectionChangingEventArgs
Inherited Members
Constructors
Initializes a new instance of the SelectionChangingEventArgs class.
C#
public SelectionChangingEventArgs(int oldSelectionStart, int oldSelectionLength, int newSelectionStart, int newSelectionLength)
The old selection start.
oldSelectionLengthintOld length of the selection.
newSelectionStartintThe new selection start.
newSelectionLengthintNew length of the selection.
Properties
Gets the new length of the selection.
C#
public int NewSelectionLength { get; }
The new length of the selection.
Gets the new selection start.
C#
public int NewSelectionStart { get; }
Gets the old length of the selection.
C#
public int OldSelectionLength { get; }
The old length of the selection.
Gets the old selection start.
C#
public int OldSelectionStart { get; }