IProcessAnalyst.PrintAll [Method]
- Last UpdatedJul 18, 2023
- 1 minute read
Displays the Print configuration dialog.
Defined As
-
[VBA] PrintAll
-
[Cicode] PrintAll()
-
[C++] HRESULT PrintAll()
Execution Result
If the function succeeds the return value will be Success. If an unexpected error occurs then 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.PrintAll
End Sub
[Cicode]
FUNCTION Example()
OBJECT hProcessAnalyst = ObjectByName("AN35");
_ObjectCallMethod(hProcessAnalyst, "PrintAll");
END