DeviceParameter.parameterType Property¶
Module: DeviceParameter
Type: ParameterType
Definition¶
Indicates the data type of the parameter (e.g., integer, string, boolean), allowing applications to understand and appropriately handle the parameter’s value.
parameter_type: ParameterType
Exceptions
An error has occurred during Devices Library execution.
ParameterType get parameterType => getParameterType();
set parameterType(ParameterType value) => setParameterType(value);
Exceptions
An error has occurred during Devices Library execution.
public ParameterType parameterType
{
get => GetparameterType();
set => SetparameterType(ref value);
}
Exceptions
An error has occurred during Devices Library execution.
public ParameterType getParameterType() throws DevicesException
public void setParameterType(ParameterType parameterType) throws DevicesException
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesDeviceParameter_GetParameterType (ID3_DEVICES_DEVICE_PARAMETER hDeviceParameter, id3DevicesParameterType * eParameterType)
int id3DevicesDeviceParameter_SetParameterType (ID3_DEVICES_DEVICE_PARAMETER hDeviceParameter, id3DevicesParameterType eParameterType)
Returns