ISSignature.isModified

Description

This property is True if the specified signature control was modified.

Syntax

object.isModified

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

Return Value

bool

Example

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)  
Note: This macro should be executed in any event handler of the form control.

Version information

Added in v8.5.0