ISControl.isModified

Description

This property is True if the specified control was modified. It is not accessible in the Object Inspector.

Syntax

object.isModified

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

Return Value

bool

Example

Display isModified for the specified control.

Dim aControl
Dim aControlInfo

Set aControl = Form.Controls_("chkMV")

aControlInfo =_
  "Caption: " & aControl.Caption & vbNewLine &_ 
  "IsModified: " & aControl.isModified & vbNewLine &_
  "TypeName: " & aControl.TypeName                
  
Profile.MsgBox(aControlInfo)  
Note: This macro should be executed in any event handler of the form control.

Version information

Added in v7.8.0