Moves to a specified page of the graph.
[Visual Basic]
Public Sub MovePage( _
ByVal destPageNum As Integer, _
ByVal update As Boolean _
)
[C#]
public void MovePage(
int destPageNum,
bool update
);
Parameters
-
destPageNum
- Page number of the destination.
-
update
- Value that indicates whether the display panel is updated.
Example
How to move to the 10th page.
awGraph1.MovePage(10, True)
awGraph1.MovePage(10, true);
See Also
AwGraph Class | Asterworld.Graph Namespace