FUNCTION project_getInfo(projectHandle, Name$, Location$)
Get information about the project identified by the handle. The project name and full path will be updated into the corresponding arguments.
|
Parameter | Description |
projectHandle |
The handle to the resource for the project |
Name$ |
The name of the resource (no path) |
Location$ |
The operating system path for the resource |
|
Returns |
A simple boolean value to indicate success (1) or failure (0). |
|
FUNCTION project_getInfo(projectHandle, Name$, Location$, ProjPath$)
Get information about the project identified by the handle. The project name and full path will be updated into the corresponding arguments.
|
Parameter | Description |
projectHandle |
The handle to the resource for the project |
Name$ |
The name of the resource (no path) |
Location$ |
The operating system path for the resource |
ProjPath$ |
The project path for the resource |
|
Returns |
A simple boolean value to indicate success (1) or failure (0). |
|
FUNCTION project_getNext()
Get a handle to the next project for the current workspace.
|
Returns |
A handle to the next project in the current workspace |
|
FUNCTION resource_getCount()
Get the number of resources in the current selection source
|
Returns |
The number of selected resources |
|
FUNCTION resource_getInfo(resHandle, Name$, Location$)
Get information about the resource identified by the handle. The resource name and full path will be updated into the corresponding arguments.
|
Parameter | Description |
resHandle |
The handle to the resource |
Name$ |
The name of the resource (no path) |
Location$ |
The operating system path for the resource |
|
Returns |
A simple boolean value to indicate success (1) or failure (0). |
|
FUNCTION resource_getInfo(resHandle, Name$, Location$, ProjPath$)
Get information about the resource identified by the handle. The resource name and full path will be updated into the corresponding arguments.
|
Parameter | Description |
resHandle |
The handle to the resource |
Name$ |
The name of the resource (no path) |
Location$ |
The operating system path for the resource |
ProjPath$ |
The project path for the resource |
|
Returns |
A simple boolean value to indicate success (1) or failure (0). |
|
FUNCTION resource_getNext()
Get a handle to the next resource in the list
|
Returns |
A handle to the next resource in the list |
|