cnsChangeViewSeparators
Changes the separators of the given view.
Synopsis
bool cnsChangeViewSeparators(string view, langString
                separators);
Parameters
| Parameter | Description | 
|---|---|
| view | ID of the view | 
| separators | The new separator which shall be used for the view | 
Return value
Returns TRUE if successful or FALSE in case of an error.
Errors
-
Description
This function defines a new separator for the given view.
Note: 
                
        The following characters are not allowed for separators: '(single quotation mark),"(quotation marks),*(asterisk),?(question mark).
Moreover, numbers and letters which are already used in the view or node name must not be used.
main()
{
  langString mySeparator;
  setLangString(mySeparator,0,"-");
  setLangString(mySeparator,1,"-");
  cnsChangeViewSeparators(".myView", mySeparator);
}Availability
UI, CTRL
