This property is True if the specified signature control is visible at runtime.
object.isVisible
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISSignature interface |
bool
Display isVisible for the specified signature control.
Dim aSignature
Dim aSignatureInfo
Set aSignature = Form.Controls_("Signature1")
aSignatureInfo =_
"Short Name: " & aSignature.ShortName & vbNewLine &_
"Type Name: " & aSignature.TypeName & vbNewLine &_
"Caption: " & aSignature.Caption & vbNewLine &_
"Height: " & aSignature.Height & vbNewLine &_
"Width: " & aSignature.Width & vbNewLine &_
"Enabled: " & aSignature.Enabled & vbNewLine &_
"Is Visible: " & aSignature.isVisible
Profile.MsgBox(aSignatureInfo)
In Profile Client v8 on User Interface is Visible cannot be found.