ISBevel.isVisible

Description

This property is True if the specified bevel is visible at runtime.

Syntax

object.isVisible

Part Attribute Type Description
object Required
The object always implements the ISBevel interface

Return Value

bool

Example

Display isVisible for the specified bevel.

Dim aBevel
Dim aBevelInfo

Set aBevel = Form.Controls_("Bevel2")

aBevelInfo =_
  "Caption: " & aBevel.Caption & vbNewLine &_
  "ShortName: " & aBevel.ShortName & vbNewLine &_
  "TypeName: " & aBevel.TypeName & vbNewLine &_
  "Width: " & aBevel.Width & vbNewLine &_
  "Height: " & aBevel.Height & vbNewLine &_
  "Left: " & aBevel.Left & vbNewLine &_
  "Top: " & aBevel.Top & vbNewLine &_
  "Style: " & aBevel.Style & vbNewLine &_
  "Tag: " & aBevel.Tag & vbNewLine &_
  "Is Visible: " & aBevel.IsVisible & vbNewLine                                                        
  
Profile.MsgBox(aBevelInfo) 
Note: This macro should be executed in any event handler of the form control.

In Profile Client v8 on User Interface is Visible cannot be found.

Version information

Added in v7.8.0