New to Telerik UI for WinFormsStart a free 30-day trial

An event arguments of SelectionChangedEventHandler

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public class SelectionChangedEventArgs : EventArgs

Inheritance: objectEventArgsSelectionChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the SelectionChangedEventArgs class.

C#
public SelectionChangedEventArgs(int selectionStart, int selectionLength)
Parameters:selectionStartint

The selection start.

selectionLengthint

Length of the selection.

Properties

Gets the length of the selection.

C#
public int SelectionLength { get; }
Property Value:

The length of the selection.

Gets the selection start.

C#
public int SelectionStart { get; }