Click or drag to resize

BaseColumnCollectionChangedEventArgsCreateColumnAddArgs Method

Create the change state that reflects the addition of one column.

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static BaseColumnCollectionChangedEventArgs CreateColumnAddArgs(
	bool isPropertyColumn,
	string columnName,
	int columnIndex,
	int rowCountOfAddedColumn
)

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.
columnName  String
Name of the freshly added column.
columnIndex  Int32
The index of the added column.
rowCountOfAddedColumn  Int32
The row count of the added column.

Return Value

BaseColumnCollectionChangedEventArgs
The newly created ChangeEventArgs for this case.
See Also