GefProcedure.ConfirmationMessage (property)

Gets and sets the confirmation message for the procedure as a String.
Syntax: String = object.ConfirmationMessage
object.ConfirmationMessage = String
Description: The ConfirmationMessage property gets and sets the confirmation message for the procedure as a String.

Example:

Sub GefProcedure_ConfirmationMessage()
    
    Dim oCimObj As GefObject
    Dim oCimProcedure As GefProcedure
    
    Set oCimObj = CimGetObject
    Set oCimProcedure = oCimObj.Procedures.Item(0)
    
    oCimProcedure.ConfirmationMessage ="Do you want to " & _
        "run the first procedure?"
    MsgBox "The confirmation message for the first procedure " & _
        "is " & """" & oCimProcedure.ConfirmationMessage & """"
    MsgBox "Re-run the event to see the changes"
    
End Sub