PutString method
- Last UpdatedJul 23, 2024
- 1 minute read
Stores a Unicode string value in the MxValue. The MxValue's data type will be MxString.
Class
IMxValue
Syntax
[C#]
void PutString(
string newVal
);
[Visual C++]
HRESULT PutString(
[in, string] LPCWSTR newVal
);
Parameters
newVal
The value that will be stored in the MxValue object.
Returns
S_OK - Success
E_OUTOFMEMORY - Unable to allocate memory for the string.