cnsGetViews
Returns the paths of all views in the given system.
Synopsis
bool cnsGetViews(string system, dyn_string &views);
Parameters
Parameter | Description |
---|---|
system | System name |
views | Receives the paths of all views in the system |
Return value
Returns TRUE if successful or FALSE in case of an error.
Errors
-
Description
This function returns the ID paths of all views in the given system.
main()
{
dyn_string viewPaths;
cnsGetViews("System1", viewPaths);
DebugN(viewPaths);
}
Availability
UI, CTRL