ISProfileForm.Enabled

Description

This property is True if the form is enabled.

Syntax

object.Enabled

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

Return Value

bool

Example

Display Enabled for the form.

Dim aForm
Dim aMessage

Set aForm = Profile.Form
aMessage = "Form Info: " & vbNewLine & vbNewLine &_
  "- Caption: " & aForm.Caption & vbNewLine &_
  "- ID: " & aForm.ID & vbNewLine &_
  "- Name: " & aForm.Name_ & vbNewLine &_
  "- TypeName: " & aForm.TypeName & vbNewLine &_   
  "- Enabled: " & aForm.Enabled
         
Profile.MsgBox(aMessage)  
Note: This macro should be executed in any event handler of the form control.

In Profile Client v8 on User Interface Enabled cannot be found.

Version information

Added in v7.8.0