DeviceParameter.parameterName Property

Module: DeviceParameter

Type: string

Definition

Stores the name of the parameter, serving as a unique identifier within the context of the device

This name is used to reference and modify the parameter’s value.

parameter_name: str

Exceptions

An error has occurred during Devices Library execution.
String get parameterName => getParameterName();
set parameterName(String value) => setParameterName(value);

Exceptions

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

Exceptions

An error has occurred during Devices Library execution.
public String getParameterName() throws DevicesException
public void setParameterName(String parameterName) throws DevicesException

Exceptions

An error has occurred during Devices Library execution.
int id3DevicesDeviceParameter_GetParameterName (ID3_DEVICES_DEVICE_PARAMETER hDeviceParameter, char * parameterName, int * parameterNameSize)
int id3DevicesDeviceParameter_SetParameterName (ID3_DEVICES_DEVICE_PARAMETER hDeviceParameter, const char * parameterName)

Returns

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