Technical Reference > Graphics Builder Automation Interface > Page Properties Functions > PageSelectNextAssociation

PageSelectNextAssociation

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

Related Functions

PageAddAssociation,PageAssociationDescription