ISProfileForm.RepresentationMethod

Description

The representation method of the form.

0 rmStructuredText
1 rmMacro
2 rmDocumentTemplate
3 rmStructuredTextHideEmpty

Syntax

object.RepresentationMethod

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

Return Value

int

Example

Display some information about the form, including its representation method.

Dim aForm
Dim aFormInfo

Set aForm = Profile.Form
aFormInfo =_
  "Short Name: " & aForm.ShortName & vbNewLine &_
  "TypeName: " & aForm.TypeName & vbNewLine &_   
  "Representation Method: " & aForm.RepresentationMethod 
    
Profile.MsgBox(aFormInfo)  
Note: This macro should be executed in any event handler of the form control.

In Profile Client v8 on User Interface Representation Method cannot be found.

Version information

Added in v7.8.0