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

IProcessAnalyst.ShowProperties [Method]

Displays the Process Analyst's property configuration dialog.

Define As

Execution Result

If the function succeeds the return value will be Success. If an unexpected error occurs then the return value will be GeneralFailure.

Calling Syntax

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

[VBA]

Sub Example()
myPage_AN35.ShowProperties
End Sub

[Cicode]

FUNCTION Example()
OBJECT hProcessAnalyst = ObjectByName("AN35");
_ObjectCallMethod(hProcessAnalyst, "ShowProperties");
END