smartDBforms.NET API Reference

SmartDataSource.ColumnInfo Event

Occurs during data retrieval, when meta information for a data column is being retrieved.

[Visual Basic]
Public Event ColumnInfo As SmartDataSourceColumnInfoEventHandler
[C#]
public event SmartDataSourceColumnInfoEventHandler ColumnInfo;

Event Data

The event handler receives an argument of type SmartDataSourceColumnInfoEventArgs containing data related to this event. The following SmartDataSourceColumnInfoEventArgs properties provide information specific to this event.

Property Description
BaseColumnName The corresponding column name in the base table. See BaseColumnName
BaseSchemaName The owner database table schema of the column See BaseSchemaName
BaseTableName The owner database table of the column See BaseTableName
Caption The proposed caption of the column. You can override the value with our own.
CaptionResID The resource id for localized caption. If this is specified it takes precedence over Caption.
ColumnName The column name as it appears in the select statement. For details see ColumnName
Description The proposed description of the column. You can override the value with our own.
DescriptionResID The resource id for localized description. If this is specified it takes precedence over Description.

See Also

SmartDataSource Class | Adillis.SmartDBForms.DataSource Namespace