This property is True if the specified control was modified. It is not accessible in the Object Inspector.
object.isModified
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISControl interface |
bool
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)