DeviceParameterDescriptor.parameterName Property¶
Module: DeviceParameterDescriptor
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 id3DevicesDeviceParameterDescriptor_GetParameterName (ID3_DEVICES_DEVICE_PARAMETER_DESCRIPTOR hDeviceParameterDescriptor, char * parameterName, int * parameterNameSize)
int id3DevicesDeviceParameterDescriptor_SetParameterName (ID3_DEVICES_DEVICE_PARAMETER_DESCRIPTOR hDeviceParameterDescriptor, const char * parameterName)
Returns