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

IProcessAnalyst.UnBlockUpdates [Method]

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

Defined As

Remarks

See Also

IProcessAnalyst.BlockUpdates [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. If other BlockUpdates are in effect, a Success will be returned also (for those C++ users, S_FALSE will be returned in this case).

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.UnblockUpdates()
End Sub

[Cicode]

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