Visible Property [Application]

Visible returns or sets the application window visibility. Returns a Boolean. If its value is set to 'True', the surfer application window is visible and if its value is set to 'False', the application window is hidden.

Syntax

object.Visible

object. Visible = bVisible

Parameter

Type

Description

bVisible

Boolean

required

Example 1

This example demonstrates how to return whether or not the Surfer application is visible.

Debug.Print SurferApp.Visible

Example 2

This example demonstrates how to display the Surfer application.

SurferApp.Visible = True

Example 3

This script displays all the properties in the Application object.

Used by: Application object