cnsGetIdSet()
Returns the names of data points linked to the matching nodes.
Synopsis
bool cnsGetIdSet(string pattern, [string view, ], int whichNames, int
langIdx, int type, dyn_string &dps);
Parameters
Parameter | Description |
---|---|
pattern |
This pattern is checked against the ID path or display name path. The wildcards * and ? can be used. One asterisk * returns all levels. The question sign ? returns one character. |
view | Restricts the search to the given view |
whichNames |
Defines whether the search pattern is matched with the ID path, display name path or both. Moreover it defines whether case sensitivity shall be enabled. The following predefined constants can be used:
The constans can be combined by using the pipe |. |
langIdx |
Defines which language of the display name path shall be checked.
This parameter is ignored if neither CNS_SEARCH_DISPLAY_NAME nor CNS_SEARCH_ALL_NAMES is defined for the whichNames parameter. |
type |
Restricts the result to the given CNSDataIdentifierType.
|
dps | Receives the names of data points linked to matching nodes. The result is a set, therefore each unique data point is only contained once. |
Return value
Returns TRUE if successful or FALSE in case of an error.
Errors
-
Description
This function searches for nodes by matching their path with a wildcard pattern. It returns the names of the data points linked to the matching nodes.
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.
Returns the data points for the Node2.
#uses "CtrlCNS"
main()
{
dyn_string dps;
bool i;
i = cnsGetIdSet("*Node2*","System1.View1:", CNS_SEARCH_ALL_NAMES, CNS_SEARCH_ALL_LANGUAGES, CNS_SEARCH_ALL_TYPES, dps);
DebugN(i, dps);
}
Availability
UI, CTRL