TiPlotComponent.ToolBar
TiPlotComponent See Also
Used to access a specific toolbar object.
property ToolBar[Index : Integer] : TiPlotToolBar;
Description
Use ToolBar to access a specific toolbar object.
Currently, only one toolbar object is supported at this time and the multiple
toolbar interface is for future expansion. The ToolBarCount, AddToolBar,
DeleteToolBar, and RemoveAllToolBars are reserved for property editors at this time.
Always use an Index of zero when accessing the toolbar.
Example
Delphi
iComponent.ToolBar[0].Visible := True;
C++ Builder
iComponent->ToolBar[0]->Visible = True;
Note: Index is zero based.
Contents | Index | Previous | Next