ISRadioButton.isModified

Description

This property is True if the specified radio button was modified. The property is not accessible in the Object Inspector.

Syntax

object.isModified

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

Return Value

bool

Example

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)  
Note: This macro should be executed in any event handler of the form control.

Version information

Added in v7.8.0