Class
SelectionChangingEventArgs

An event arguments of SelectionChangingEventHandler

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

cs-api-definition
public class SelectionChangingEventArgs : CancelEventArgs

Inheritance: objectEventArgsCancelEventArgsSelectionChangingEventArgs

Inherited Members CancelEventArgs.CancelEventArgs.Empty

Constructors

SelectionChangingEventArgs(int, int, int, int)

Initializes a new instance of the SelectionChangingEventArgs class.

Declaration

cs-api-definition
public SelectionChangingEventArgs(int oldSelectionStart, int oldSelectionLength, int newSelectionStart, int newSelectionLength)

Parameters

oldSelectionStart

int

The old selection start.

oldSelectionLength

int

Old length of the selection.

newSelectionStart

int

The new selection start.

newSelectionLength

int

New length of the selection.

Properties

NewSelectionLength

Gets the new length of the selection.

Declaration

cs-api-definition
public int NewSelectionLength { get; }

Property Value

int

The new length of the selection.

NewSelectionStart

Gets the new selection start.

Declaration

cs-api-definition
public int NewSelectionStart { get; }

Property Value

int

OldSelectionLength

Gets the old length of the selection.

Declaration

cs-api-definition
public int OldSelectionLength { get; }

Property Value

int

The old length of the selection.

OldSelectionStart

Gets the old selection start.

Declaration

cs-api-definition
public int OldSelectionStart { get; }

Property Value

int