ISEdit.isVisible

Description

This property is True if the specified edit control is visible at runtime. This property is not accessible in the Object Inspector.

Syntax

object.isVisible

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

Return Value

bool

Example

Display isVisible for the specified edit control.

Dim aEdit
Dim aEditInfo

Set aEdit = Form.Controls_("edtInform")

aEditInfo =_
  "Short Name: " & aEdit.ShortName & vbNewLine &_ 
  "Type Name: " & aEdit.TypeName & vbNewLine &_ 
  "Is Visible: " & aEdit.isVisible               
  
Profile.MsgBox(aEditInfo)  
Note: This macro should be executed in any event handler of the form control.

Version information

Added in v7.8.0