Class ActiveRowChangedEventArgs
Information passed in the ActiveRowChanged event.
Inherited Members
Namespace: SdlSdl.DesktopEditorEditorApi
Assembly: Sdl.DesktopEditor.EditorApi.dll
Syntax
public class ActiveRowChangedEventArgs : EventArgs
Constructors
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 |