This property is always False for the specified button. The property is not accessible in the Object Inspector.
object.isModified
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISButton interface |
bool
Display isModified for the specified button.
Dim aButton
Dim aControlInfo
Set aButton = Form.Controls_("btnDemo")
aControlInfo =_
"Caption: " & aButton.Caption & vbNewLine &_
"TypeName: " & aButton.TypeName & vbNewLine &_
"IsModified: " & aButton.isModified
Profile.MsgBox(aControlInfo)