BaseColumnCollectionChangedEventArgsCreateColumnRenameArgs Method |
Create the change state that reflects the renaming of one column.
Namespace: Altaxo.DataAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static BaseColumnCollectionChangedEventArgs CreateColumnRenameArgs(
bool isPropertyColumn,
string oldName,
string newName,
int columnIndex
)
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.
- oldName String
- The name of the column before it was renamed.
- newName String
- The new name of the column.
- columnIndex Int32
- The index of the renamed column.
Return Value
BaseColumnCollectionChangedEventArgsThe newly created ChangeEventArgs for this case.
See Also