DeviceParameterDescriptor.parameterType Property¶
Module: DeviceParameterDescriptor
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 id3DevicesDeviceParameterDescriptor_GetParameterType (ID3_DEVICES_DEVICE_PARAMETER_DESCRIPTOR hDeviceParameterDescriptor, id3DevicesParameterType * eParameterType)
int id3DevicesDeviceParameterDescriptor_SetParameterType (ID3_DEVICES_DEVICE_PARAMETER_DESCRIPTOR hDeviceParameterDescriptor, id3DevicesParameterType eParameterType)
Returns