GefTextFormat.EditActionConfirm (property)

Gets and sets whether the edit action presents a confirmation message before doing the setpoint action.
Syntax: GefTriStateEnum = object.EditActionConfirm
object.EditActionConfirm = GefTriStateEnum
Description: The EditActionConfirm property gets and sets whether the edit action presents a confirmation message before doing the setpoint action.

Example:

Sub GefTextFormat_EditActionConfirm()
    
    Dim oCimObj As GefObject
    Dim oCimTxtFmt As GefTextFormat
    
    Set oCimObj = CimGetObject
    Set oCimTxtFmt = oCimObj.TextFormat
    If Not oCimTxtFmt Is Nothing Then
        oCimTxtFmt.EditAction = gefStateTrue
        oCimTxtFmt.EditActionConfirm = gefStateTrue
        CimGetScreen.Refresh False
    End If
    
End Sub