cnsGetPropertyKeys
Returns a list of all keys which are defined for the given node.
Synopsis
bool cnsGetPropertyKeys(string cnsPath, dyn_string &keys);
Parameters
Parameter | Description |
---|---|
cnsPath | ID path of the node |
keys | List of all keys |
Return value
TRUE or FALSE indicating success or failure of the operation.
Errors
Possible errors:
-
Wrong or missing parameters
-
The defined node could not be found
Description
This function returns a list of all keys which are defined for the given node.
main()
{
dyn_string keys;
cnsGetPropertyKeys("System1.View1:Node3.Node1", keys);
}
Availability
UI, CTRL