WinStudio
IWSFormComponent interface, graph objects
Enables or disables the run-time buttons (Copy/Save/Print) when hovering over the graph component.
object.GraphEnableRuntimeButtons( Boolean )
Part |
Description |
object | Required. A reference to a valid graph component object. |
Boolean | Required. Determines whether the run-time buttons
are enabled.
|
Sub Main() 'Disables the Copy, Save, and Print buttons. ThisForm.Components("graph1").GraphEnableRuntimeButtons(False) End Sub