Gets and sets whether the procedure halts on error as a Boolean. | |
Syntax: | Boolean =
object.HaltOnError object.HaltOnError = Boolean |
Description: | The HaltOnError property gets and sets
whether the procedure halts on error. Example: Sub GefProcedure_HaltOnError() Dim oCimObj As GefObject Dim oCimProcedure As
GefProcedure Dim oCimProcActs As
GefProcActions Set oCimObj = CimGetObject Set oCimProcedure =
oCimObj.Procedures.Item(0) oCimProcedure.HaltOnError =
True End Sub |