:: com :: sun :: star :: script :: browse ::

unpublished constants group BrowseNodeTypes
Usage Restrictions
not published
Description
These constants define the three different types of nodes in the BrowseNode hierarchy.

Constants
SCRIPT Indicates node is a script  
CONTAINER Indicates node is a container  
ROOT Indicates node is root of the tree.  
Constants' Details
SCRIPT
const short SCRIPT = 0;
Description
Indicates node is a script
CONTAINER
const short CONTAINER = 1;
Description
Indicates node is a container
ROOT
const short ROOT = 2;
Description
Indicates node is root of the tree.
Top of Page