The caption of the form.
object.Text
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProfileForm interface |
string
Display some information about the form, including its caption.
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 &_
"- Height: " & aForm.Height & vbNewLine &_
"- Width: " & aForm.Width & vbNewLine &_
"- Top: " & aForm.Top & vbNewLine &_
"- Left: " & aForm.Left & vbNewLine &_
"- Tag: " & aForm.Tag & vbNewLine &_
"- Short Name: " & aForm.ShortName & vbNewLine
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Caption can be found in
.