This property is False because it cannot be modified by user. The property is not accessible in the Object Inspector.
object.isModified
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISLabel interface |
bool
Display isModified for the specified label control.
Dim aLabel
Dim aLabelInfo
Set aLabel = Form.Controls_("Label1")
aLabelInfo =_
"Short Name: " & aLabel.ShortName & vbNewLine &_
"Type Name: " & aLabel.TypeName & vbNewLine &_
"Is Modified: " & aLabel.IsModified
Profile.MsgBox(aLabelInfo)