Class ActiveRowChangedEventArgs
Information passed in the ActiveRowChanged event.
Inheritance
System.Object
    System.EventArgs
    ActiveRowChangedEventArgs
  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: Sdl.DesktopEditor.EditorApi
Assembly: Sdl.DesktopEditor.EditorApi.dll
Syntax
public class ActiveRowChangedEventArgs : EventArgsConstructors
ActiveRowChangedEventArgs()
default constructor
Declaration
public ActiveRowChangedEventArgs()ActiveRowChangedEventArgs(IRowInfo, IRowInfo)
Contructor
Declaration
public ActiveRowChangedEventArgs(IRowInfo PreviousActiveRow, IRowInfo NewActiveRow)Parameters
| Type | Name | Description | 
|---|---|---|
| IRowInfo | PreviousActiveRow | |
| IRowInfo | NewActiveRow | 
Properties
NewActiveRow
The active row after the change, or null if none.
Declaration
public IRowInfo NewActiveRow { get; set; }Property Value
| Type | Description | 
|---|---|
| IRowInfo | 
PreviousActiveRow
The active row before the change, or null if none.
Declaration
public IRowInfo PreviousActiveRow { get; set; }Property Value
| Type | Description | 
|---|---|
| IRowInfo |