cnsGetViewSeparators
Returns the separators of the given view.
Synopsis
bool cnsGetViewSeparators(string view, langString
                &separators);
Parameters
| Parameter | Description | 
|---|---|
| view | ID path of the view | 
| separators | Receives the separators of the given view | 
Return value
Returns TRUE if successful or FALSE in case of an error.
Errors
-
Description
This function returns the separators of the given view.
main()
{
  langString separators;
  cnsGetViewSeparators("System1.View1:", separators);
  DebugN(separators);
}
        Availability
UI, CTRL
