Context Parameters for Cell Change Handlers
Cell change handlers can utilize the following context parameters:
Parameter Name | Value |
---|---|
@DataLanguage or @data_language | The data language code selected in the Options dialog box. |
@TableName or @table_name | The qualified name of the active query object, e.g., [s02].[usp_cashbook]. |
@ColumnName or @column_name | The name of the active column. |
@CellValue or @cell_value | The string value of the active cell. |
@CellNumberValue or @cell_number_value | The numeric value of the active cell. |
@CellDateTimeValue or @cell_datetime_value | The datetime value of the active cell. |
@ChangedCellCount or @changed_cell_count | The total number of cells changed in the current transaction. |
@ChangedCellIndex or @changed_cell_index | The index of the changed cell in the set, starting from 1. |
@TransactionID or @transaction_id | A unique GUID representing the current transaction. |
@TransactionStartTime or @transaction_start_time | The UTC start time of the current transaction. |
@WindowsUserName or @windows_user_name | The Windows login name of the current user. |