Technical Reference > Graphics Builder Automation Interface > Specific Functions > Visible

Visible

Controls visibility of the CitectSCADA Graphics Builder, or retrieves its current visible state.

Syntax

Visible

Return Value

If determining the current visible state of the Graphics Builder, TRUE or FALSE is returned. If applying a setting to this function, 0 (zero) is returned if successful, otherwise an error is returned.

Note: For details on handling return and error values, see Error Handling.

Example

' Make CitectSCADA Graphics Builder appear
GraphicsBuilder.Visible = TRUE

' Retrieve the current visible state of the Graphics Builder
MyVariable = GraphicsBuilder.Visible

Note: This function is implemented in the C++ environment as two separate functions: put_Visible sets the visible state of the Graphics Builder, and get_Visible retrieves the current state of the Graphics Builder (TRUE = visible).