TiPlotObject.PopupEnabled
TiPlotObject
Used to enable or disable the Popup Menu of a Plot Object.
procedure PopupEnabled : Boolean;
Description
Use the PopupEnabled property to enable or disable the Popup Menu of a Plot
Object. The Popup Menu is shown when a user right-clicks on this Plot Object.
Setting this property to FALSE is useful if you don't want the Popup Menu
functionality of this Plot Object in your particular application.
Note: when the Enabled property is set to FALSE, then this property will have no effect and the
Popup will be disabled..
Example
Delphi
iComponent.XAxis[0].PopupEnabled := False;
iComponent.YAxis[0].PopupEnabled := False;
iComponent.Legend[0].PopupEnabled := False;
C++ Builder
iComponent->XAxis[0]->PopupEnabled = FALSE;
iComponent->YAxis[0]->PopupEnabled = FALSE;
iComponent->Legend[0]->PopupEnabled = FALSE;
Contents | Index | Previous | Next