Siebel SmartScript Administration Guide > Extending Scripts with Siebel VB and Siebel eScript > Other Preprogrammed SmartScript Methods >

GetPage


GetPage returns a page of the script by name.

Syntax

GetPage(name)

Argument
Description

name

The name of a SmartScript page, as a string

Returns

A page of the script, as a SmartScriptPage object.

Usage

This method returns a page of the script when the page name is specified. This name is the non-translated name set during authoring, not the label of the page tab displayed for a particular language. GetPage is declared as a SmartScriptPage object.

Siebel VB Example

Dim IntroductionPage as SmartScriptPage

Set IntroductionPage = GetPage("Introduction")

See Also

CurrentPage and Page.

Siebel SmartScript Administration Guide