StringBuffer.value Property

Module: StringBuffer

Type: string

Definition

Stores the actual string data

This member can be directly modified to change the string content, offering a simple interface for string updates.

value: str

Exceptions

An error has occurred during Devices Library execution.
String get value => getValue();
set value(String value) => setValue(value);

Exceptions

An error has occurred during Devices Library execution.
public string value
{
    get => Getvalue();
    set => Setvalue(ref value);
}

Exceptions

An error has occurred during Devices Library execution.
public String getValue() throws DevicesException
public void setValue(String value) throws DevicesException

Exceptions

An error has occurred during Devices Library execution.
int id3DevicesStringBuffer_GetValue (ID3_DEVICES_STRING_BUFFER hStringBuffer, char * value, int * valueSize)
int id3DevicesStringBuffer_SetValue (ID3_DEVICES_STRING_BUFFER hStringBuffer, const char * value)

Returns

int
An error code.
See id3DevicesError file for the list of possible error codes.