This property is True if the specified radio button was modified. The property is not accessible in the Object Inspector.
object.isModified
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISRadioButton interface |
bool
Display isModified for the specified radio button.
Dim aControl
Dim aControlInfo
Set aControl = Form.Controls_("rbCaseOne")
aControlInfo =_
"Caption: " & aControl.Caption & vbNewLine &_
"IsModified: " & aControl.isModified & vbNewLine &_
"TypeName: " & aControl.TypeName
Profile.MsgBox(aControlInfo)