GraphEnableRuntimeButtons method (WinStudio scripts)

Applies To

IWSFormComponent interface, graph objects

Definition

Enables or disables the run-time buttons (Copy/Save/Print) when hovering over the graph component.

Syntax

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.
  • TRUE - Buttons are enabled.
  • FALSE - Buttons are disabled.

Example

Sub Main()
   'Disables the Copy, Save, and Print buttons. 
   ThisForm.Components("graph1").GraphEnableRuntimeButtons(False)
End Sub