Using the Process Analyst > Process Analyst for Developers > Automation Model > IProcessAnalyst.BlockUpdates [Method]

IProcessAnalyst.BlockUpdates [Method]

Blocks certain aspects of the Process Analyst's redrawing and data updating.

Defined As

Remarks

See Also

IProcessAnalyst.UnBlockUpdates [Method]

Execution Result

If the function succeeds, the return value will be Success. If the function does not succeed, the return value will be GeneralFailure.

Calling Syntax

This example assumes there is a valid Process Analyst object to be passed into the example methods.

[VBA]

Sub Example(ProcessAnalyst As Object)
ProcessAnalyst.BlockUpdates()
End Sub

[Cicode]

FUNCTION Example(OBJECT hProcessAnalyst)
_ObjectCallMethod(hProcessAnalyst, "BlockUpdates");
END