Class CustomColumnContentChangedEventArgs
Information communicated from a custom column implementation when one or more of its cells have changed.
Inheritance
Object
EventArgs
CustomColumnContentChangedEventArgs
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 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 |
---|---|
List<IRowInfo> |
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 |
---|---|
Boolean |
Remarks
Use this rather than adding all rows to the AffectedRows collection, that will improve performance for large documents.