IProcessAnalyst.ShowProperties [Method]
- Last UpdatedJul 18, 2023
- 1 minute read
Displays the Process Analyst's property configuration dialog.
Define As
-
[VBA] ShowProperties
-
[Cicode] ShowProperties()
-
[C++] HRESULT ShowProperties ()
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