IsPaneTwoHidden method (WinStudio scripts)

Applies to

IWSForm interface

Description

Returns a Boolean value which indicates whether splitter pane two is currently hidden

Syntax

object.IsPaneTwoHidden( )

Part Description
object Required. A reference to a valid form object.

Remarks

A return value of:

  • TRUE indicates that the pane is hidden.
  • FALSE indicates that the pane is visible.

This form script API can be used along with the standard events to have more control over the splitter panes.

Example

public void HandlePaneState()
{
   if ( ThisForm.IsPaneTwoHidden )
   {
      // implementation here...
   }
}