CaptureData.str Property¶
Module: CaptureData
Type: string
Definition¶
Provides a string representation of the captured data, facilitating scenarios where data needs to be interpreted or displayed as text.
This could be used for debugging purposes, logging, or any situation where a human-readable format is preferable.
String get str => getStr();
set str(String value) => setStr(value);
Exceptions
An error has occurred during Devices Library execution.
public string str
{
get => Getstr();
set => Setstr(ref value);
}
Exceptions
An error has occurred during Devices Library execution.
public String getStr() throws DevicesException
public void setStr(String str) throws DevicesException
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesCaptureData_GetStr (ID3_DEVICES_CAPTURE_DATA hCaptureData, char * str, int * strSize)
int id3DevicesCaptureData_SetStr (ID3_DEVICES_CAPTURE_DATA hCaptureData, const char * str)
Returns