Click or drag to resize

BaseColumnCollectionChangedEventArgsCreateColumnRemoveArgs Method

Creates a change state that reflects the removal of some columns.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static BaseColumnCollectionChangedEventArgs CreateColumnRemoveArgs(
	bool isPropertyColumn,
	IEnumerable<string> columnNames,
	int firstColumnNumber,
	int originalNumberOfColumns,
	int maxRowCountOfRemovedColumns
)

Parameters

isPropertyColumn  Boolean
True if the call comes from a collection of property columns; false if the call comes from a collection of data columns.
columnNames  IEnumerableString
The names of the columns that were removed.
firstColumnNumber  Int32
The first column number that was removed.
originalNumberOfColumns  Int32
The number of columns in the collection before the removal.
maxRowCountOfRemovedColumns  Int32
The maximum row count of the removed columns.

Return Value

BaseColumnCollectionChangedEventArgs
The change state that reflects the removal.
See Also