ISSignature.Align

Description

This property defines how the specified signature control is aligned on the form.

Syntax

object.Align

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

Return Value

TSAlign

Example

Display some information about the specified signature control, including its align.

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 & vbNewLine &_  
  "Align: " & aSignature.Align                           
  
Profile.MsgBox(aSignatureInfo)  
Note: This macro should be executed in any event handler of the form control.

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

Version information

Added in v8.5.0