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

IProcessAnalyst.SynchroniseToNow [Method]

Synchronizes pens such that the date/time reflects "Now."

Defined As

Execution Result

If the function succeeds, the return value will be Success. If any other problem occurs, the return value will be GeneralFailure.

Remarks

The current span for each pen will be maintained. `Now' is defined as the current time on the client machine.

Calling Syntax

Assumes you have a page called "myPage" and the Process Analyst has been named "AN35".

[VBA]

Sub Example()
myPage_AN35.SynchroniseToNow
End Sub

[Cicode]

Sub Example()
OBJECT hProcessAnalyst = ObjectByName("AN35");
_ObjectCallMethod(hProcessAnalyst, "SynchroniseToNow");
End Sub