Table of Contents
See Also
This class has no related objects.
Enumerations
Name | Values |
---|
This class exposes no enumerations.
Constants
Name | Type | Value |
---|
This class exposes no constants.
Events
Definition | Description |
---|
This class exposes no events.
Methods
Definition | Description |
---|---|
AddPage( container as WebContainer ) | Adds a page to the PagePanel. |
Container( index as Integer ) as WebContainer | Returns the page at index. |
Count() as Integer | Returns the number of pages currently added. |
InsertPage( atIndex as Integer, container as WebContainer ) | Inserts a WebContainer at the given index. |
RemoveAll() | Removes all pages from the PagePanel and calls Close on the associated WebContainers. |
RemovePage( panelIndex as Integer ) | Removes the specified page from the PagePanel and call Close on the associated WebContainer. |
Properties
Name | Type | Default Value | Description |
---|---|---|---|
Value | Integer | 0 | The currently selected page. |
Examples
Adding a Panel
GraffitiWebPagePanel expects that the WebContainers you wish to use as panels are already embedded in the page. You can do this at design-time or at runtime. Once your WebContainers are present on the page, you need only call one of the methods to add the WebContainer to GraffitiWebPagePanel as a panel, such as (assuming you've named your WebContainer newContainer
):
GraffitiWebPagePanel1.AddPage( newContainer )
Notes
This class currently has no notes.