Class ActiveRowChangedEventArgs
Information passed in the ActiveRowChanged event.
Inheritance
Object
EventArgs
ActiveRowChangedEventArgs
Inherited Members
EventArgs.Empty
Object.ToString()
Object.Equals(Object)
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Namespace: Sdl.DesktopEditor.EditorApi
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 |