All the methods related to nodes managed by GenApi.
◆ NODE_StringSetValue()
ITALA_API_C ItalaError NODE_StringSetValue |
( |
H_NODE |
hNode, |
|
|
const char * |
pValue |
|
) |
| |
Set the value of the node in a string Node.
- Parameters
-
[in] | hNode | Handle to Node instance, should be a string node. |
[out] | pValue | Value to set to the Node. |
- Returns
- ItalaError the error code; return ItalaErrorSuccess (0) if no errors occures.
◆ NODE_StringGetValue()
ITALA_API_C ItalaError NODE_StringGetValue |
( |
H_NODE |
hNode, |
|
|
char * |
value, |
|
|
size_t * |
pSize |
|
) |
| |
Get the value of the node in a string Node.
- Parameters
-
[in] | hNode | Handle to Node instance, should be a string node. |
[out] | value | Value of the Node. |
[in,out] | pSize | Maximum element of the array in input, number of element filled in output. |
- Returns
- ItalaError the error code; return ItalaErrorSuccess (0) if no errors occures.
◆ NODE_StringGetMaxLength()
ITALA_API_C ItalaError NODE_StringGetMaxLength |
( |
H_NODE |
hNode, |
|
|
int64_t * |
pMaxLength |
|
) |
| |
Get the string maximum length of a string Node.
- Parameters
-
[in] | hNode | Handle to Node instance, should be a string node. |
[out] | pMaxLength | Maximum length of the Node value. |
- Returns
- ItalaError the error code; return ItalaErrorSuccess (0) if no errors occures.