Gets the GefExecutionCondition that determines if edit aciton will occur. | |
Syntax: | Set GefExecutionCondition = object.EditActionCondition |
Description: | The EditActionCondition property gets the
GefExecutionCondition
that determines if edit aciton will occur. Example: Sub GefTextFormat_EditActionCondition() Dim oCimObj As GefObject Dim oCimTxtFmt As
GefTextFormat Dim oCimExecCond As
GefExecutionCondition Set oCimObj = CimGetObject Set oCimTxtFmt =
oCimObj.TextFormat If Not oCimTxtFmt Is Nothing
Then oCimTxtFmt.EditAction
= gefStateTrue oCimTxtFmt.EditActionConfirm
= gefStateTrue Set
oCimExecCond = oCimTxtFmt.EditActionCondition oCimExecCond.Expression
= "1" CimGetScreen.Refresh
False End If End Sub |