Class SelectionChangedEventArgs
An event arguments of SelectionChangedEventHandler
Inheritance
System.Object
    System.EventArgs
    SelectionChangedEventArgs
  Inherited Members
      System.EventArgs.Empty
    
    
      System.Object.ToString()
    
    
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
  Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class SelectionChangedEventArgs : EventArgs
  Constructors
SelectionChangedEventArgs(Int32, Int32)
Initializes a new instance of the SelectionChangedEventArgs class.
Declaration
public SelectionChangedEventArgs(int selectionStart, int selectionLength)
  Parameters
| 
        System.Int32
        selectionStart
         The selection start.  | 
    
| 
        System.Int32
        selectionLength
         Length of the selection.  | 
    
Properties
SelectionLength
Gets the length of the selection.
Declaration
public int SelectionLength { get; }
  Property Value
| 
        System.Int32
         The length of the selection.  | 
    
SelectionStart
Gets the selection start.
Declaration
public int SelectionStart { get; }
  Property Value
| 
        System.Int32
         
  |