This function returns the name of the signature control type.
| Control Type in Object Inspector | Type Name |
| TButton | TICDOButton |
| TBevel | TICDOBevel |
| TCheckBox | TICDOChechBox |
| TListControl | TICDOListControl |
| TComboBox | TICDOComboBox |
| TEdit | TICDOEdit |
| TImage | TICDOImage |
| TLabel | TICDOLabel |
| TLinker | TICDOLinker |
| TMemo | TICDOMemo |
| TRadioButton | TICDORadioButton |
| TReport | TICDOReport |
| TRichEdit | TICDORichEdit |
| TSignature | TICDOSignature |
| TISliceImageEditor | TISliceImageEditor |
| TShape | TICDOShape |
| TWebBrowser | TICDOWebBrowser |
object.TypeName()
| Part | Attribute | Type | Description |
|---|---|---|---|
object |
Required | The object always implements the
ISSignature interface |
string
Display some information about the specified signature control, including the name of the signature control type.
Dim aSignature
Dim aSignatureInfo
Set aSignature = Form.Controls_("Signature1")
aSignatureInfo =_
"ShortName: " & aSignature.ShortName & vbNewLine &_
"Caption: " & aSignature.Caption & vbNewLine &_
"TypeName: " & aSignature.TypeName & vbNewLine &_
"Width: " & aSignature.Width & vbNewLine &_
"Height: " & aSignature.Height & vbNewLine &_
"Left: " & aSignature.Left & vbNewLine &_
"Top: " & aSignature.Top & vbNewLine &_
"IsModified " & aSignature.IsModified & vbNewLine &_
"Enabled: " & aSignature.Enabled
Profile.MsgBox(aSignatureInfo) In Profile Client v8 on User Interface Type Name cannot be found.