PageSelectNextAssociation
- Last UpdatedJul 13, 2023
- 1 minute read
Selects the next association in the current page.
Syntax
PageSelectNextAssociation()
Return Value
0 (zero) if successful, otherwise an error is returned.
Example
Print associations in the current page’s properties:
On Error Resume Next
Err.Clear()
GraphicsBuilder.SelectFirstAssociation()
While (Err.Number = 0)
Console.Out.WriteLine(GraphicsBuilder.PageAssociationName)
GraphicsBuilder.SelectNextAssociation()
End While