This property is True if neither of the grouped checkboxes is ticked. The property is not accessible in the Object Inspector.
object.Empty
| Part | Attribute | Type | Description |
|---|---|---|---|
object |
Required | The object always implements the
ISCheckBox interface |
bool
Display Empty for the specified checkbox.
Dim aControl
Dim aControlInfo
Set aControl = Form.Controls_("chkMetre1")
aControlInfo =_
"Caption: " & aControl.Caption & vbNewLine &_
"ShortName: " & aControl.ShortName & vbNewLine &_
"Empty: " & aControl.Empty
Set aControl = Form.Controls_("chkMetre2")
aControlInfo = aControlInfo & vbNewLine &_
"Caption: " & aControl.Caption & vbNewLine &_
"ShortName: " & aControl.ShortName & vbNewLine &_
"Empty: " & aControl.Empty
Profile.MsgBox(aControlInfo)