DeviceParameter.valueAsString Property¶
Module: DeviceParameter
Type: string
Definition¶
Holds the parameter’s value for types that are best represented as strings, including textual configurations or numerical values requiring special formatting.
value_as_string: str
Exceptions
An error has occurred during Devices Library execution.
String get valueAsString => getValueAsString();
set valueAsString(String value) => setValueAsString(value);
Exceptions
An error has occurred during Devices Library execution.
public string valueAsString
{
get => GetvalueAsString();
set => SetvalueAsString(ref value);
}
Exceptions
An error has occurred during Devices Library execution.
public String getValueAsString() throws DevicesException
public void setValueAsString(String valueAsString) throws DevicesException
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesDeviceParameter_GetValueAsString (ID3_DEVICES_DEVICE_PARAMETER hDeviceParameter, char * valueAsString, int * valueAsStringSize)
int id3DevicesDeviceParameter_SetValueAsString (ID3_DEVICES_DEVICE_PARAMETER hDeviceParameter, const char * valueAsString)
Returns