ST_SoE_String
The ST_SoE_String structure describes a string as it can be used in SoE accesses.
TYPE ST_SoE_String :
STRUCT
iActualSize : UINT;
iMaxSize : UINT;
strData : STRING(MAX_STRING_LENGTH);
END_STRUCT
END_TYPE
Name | Type | Description |
---|---|---|
iActualSize | UINT | Current length of the string (without closing \0) |
iMaxSize | UINT | Maximum length of the string (without closing \0) |
strData | STRING(MAX_STRING_LENGTH) | String |