SetBrowserPosition
Description:
Format:
SetBrowserPosition (integer Session ID (optional), integer Top, integer Left)
|
Parameters: |
Integer |
Session ID (optional) |
Browser Occurrence Number. |
|
Integer |
Top |
Position of the top of the Browser. |
|
|
Integer |
Left |
Position of the left side of the Browser. |
|
|
Return Value: |
Boolean |
Success Ind |
Success Indicator. |
Usage:
Example 1:
Open a Browser as invisible, Turn off the Menu and Tool Bars, position the Browser to the top, left, size the Browser, and make the Browser visible.
Integer intSess
IntSess = OpenBrowser(FALSE)
SetBrowserBars (intSess, FALSE, FALSE, TRUE)
SetBrowserPosition (intSess, 1, 1)
SetBrowserSize (intSess, 800, 1200)
SetBrowserVisible (intSess, TRUE)