ISProfileForm.CanceledSave

Description

This property is True if the process of saving of the modified form was cancelled.

Syntax

object.CanceledSave

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

Return Value

bool

Example

Display CanceledSave for the form.

Dim aForm
Dim aFormInfo

Set aForm = Profile.Form
aFormInfo =_
  "Short Name: " & aForm.ShortName & vbNewLine &_
  "TypeName: " & aForm.TypeName & vbNewLine &_   
  "Canceled Save: " & aForm.CanceledSave 
    
Profile.MsgBox(aFormInfo)  
Note: This macro should be executed in any event handler of the form control.

Version information

Added in v7.8.0