DisplayClippedCellHints: Boolean;
DisplayClippedCellHints: boolean;
The DisplayClippedCellHints property determines whether to show a tooltip containing the full text of table cell.
Available values:
True. A tooltip is shown for the table cell.
False. A tooltip is not shown for the table cell.
To execute the example an express report with the EXPRESS identifier is required.
Add links to the Metabase, Tab, Express system assemblies.
Sub UserProc;
Var
MB: IMetabase;
Express: IEaxAnalyzer;
Tab: ITabSheet;
View: ITabView;
Begin
MB := MetabaseClass.Active;
Express := MB.ItemById("EXPRESS").Edit As IEaxAnalyzer;
Tab := Express.Grid.TabSheet;
View := Tab.View;
View.DisplayClippedCellHints := True;
(Express As IMetabaseObject).Save;
End Sub UserProc;
After executing the example tooltips containing the full text of cells can be shown for table sheet cells.
The requirements and result of the Fore.NET Example execution match with those in the Fore Example.
Imports Prognoz.Platform.Interop.Express;
Imports Prognoz.Platform.Interop.Tab;
…
Public Shared Sub Main(Params: StartParams);
Var
MB: IMetabase;
Express: IEaxAnalyzer;
Tab: ITabSheet;
View: ITabView;
Begin
MB := Params.Metabase;
Express := MB.ItemById["EXPRESS"].Edit() As IEaxAnalyzer;
Tab := Express.Grid.TabSheet;
View := Tab.View;
View.DisplayClippedCellHints := True;
(Express As IMetabaseObject).Save();
End Sub;
See also: