Class CustomColumnContentChangedEventArgs
Information communicated from a custom column implementation when one or more of its cells have changed.
Inherited Members
Namespace: SdlSdl.DesktopEditorEditorApi
Assembly: Sdl.DesktopEditor.EditorApi.dll
Syntax
public class CustomColumnContentChangedEventArgs : EventArgs
Constructors
CustomColumnContentChangedEventArgs()
Default contructor, does nothing.
Declaration
public CustomColumnContentChangedEventArgs()
Properties
AffectedRows
The rows in the custom column that were affected by the change.
Declaration
public List<IRowInfo> AffectedRows { get; }
Property Value
Type | Description |
---|---|
ListIRowInfo |
AllRowsAffected
Flag indicating that all rows in the entire column is affected by the change.
Declaration
public bool AllRowsAffected { get; set; }
Property Value
Type | Description |
---|---|
bool |
Remarks
Use this rather than adding all rows to the AffectedRows collection, that will improve performance for large documents.