This property is True if the specified edit control was modified. The property is not accessible in the Object Inspector.
object.isModified
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISEdit interface |
bool
Display isModified for the specified edit control.
Dim aEdit
Dim aEditInfo
Set aEdit = Form.Controls_("edtInform")
aEditInfo =_
"Short Name: " & aEdit.ShortName & vbNewLine &_
"TypeName: " & aEdit.TypeName & vbNewLine &_
"IsModified: " & aEdit.isModified
Profile.MsgBox(aEditInfo)