This property is True if the specified signature control was modified.
object.isModified
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISSignature interface |
bool
Display isModified for the specified signature control.
Dim aSignature
Dim aSignatureInfo
Set aSignature = Form.Controls_("Signature1")
aSignatureInfo =_
"ShortName: " & aSignature.ShortName & vbNewLine &_
"TypeName: " & aSignature.TypeName & vbNewLine &_
"Top: " & aSignature.Top & vbNewLine &_
"Left: " & aSignature.Left & vbNewLine &_
"Width: " & aSignature.Width & vbNewLine &_
"Height: " & aSignature.Height & vbNewLine &_
"Is Modified: " & aSignature.isModified
Profile.MsgBox(aSignatureInfo)