DisplayNumericColumnNames: Boolean;
DisplayNumericColumnNames: boolean;
The DisplayNumericColumnNames property determines whether the names of table columns are displayed as numbers.
By default the property is set to False.
If the property is set to False, the names of the table columns are displayed as letters. When formulas are visually formatted, addressing style of A1 cells will be used.
If the property is set to True, names of the table columns are displayed as numbers. When formulas are visually formatted, addressing style of R1C1 cells will be used.
To execute the example a form with the Button component named Button1 on it, the UiTabSheet component named UiTabSheet1 are required. UiTabSheet1 should be selected as a data source for the TabSheetBox component. The link to the Tab system assembly should be added.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
View: ITabView;
Tabsheet: ITabsheet;
Begin
View := UiTabSheet1.TabSheet.View;
View.DisplayNumericColumnNames := True;
End Sub Button1OnClick;
After executing the example names of the table columns are displayed as numbers. Addresses of the cells used in formulas are displayed in R1C1 style.
To execute the example a form with a button named button1 on it, the uiTabSheetNet component named uiTabSheetNet1 are required. uiTabSheetNet1 should be selected as a data source for the TabSheetBoxNet component. The link to the Tab system assembly should be added.
Imports Prognoz.Platform.Interop.Tab;
...
Private Sub button1_Click(sender: System.Object; e: System.EventArgs);
Var
View: ITabView;
Begin
View := uiTabSheetNet1.TabSheetUi.TabSheet.View;
View.DisplayNumericColumnNames := True;
End Sub;
After executing the example names of the table columns are displayed as numbers. Addresses of the cells used in formulas are displayed in R1C1 style.
See also: