ISButton.isModified

Description

This property is always False for the specified button. The property is not accessible in the Object Inspector.

Syntax

object.isModified

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

Return Value

bool

Example

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

Version information

Added in v7.8.0