DeviceParameterDescriptor.automatic Property¶
Module: DeviceParameterDescriptor
Type: bool
Definition¶
A boolean flag indicating whether the parameter is managed automatically by the device or system, or if it requires manual configuration.
This distinction is crucial for applications that need to differentiate between user-controllable and system-controlled settings.
bool get automatic => getAutomatic();
set automatic(bool value) => setAutomatic(value);
Exceptions
An error has occurred during Devices Library execution.
public bool automatic
{
get => Getautomatic();
set => Setautomatic(ref value);
}
Exceptions
An error has occurred during Devices Library execution.
public boolean getAutomatic() throws DevicesException
public void setAutomatic(boolean automatic) throws DevicesException
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesDeviceParameterDescriptor_GetAutomatic (ID3_DEVICES_DEVICE_PARAMETER_DESCRIPTOR hDeviceParameterDescriptor, bool * automatic)
int id3DevicesDeviceParameterDescriptor_SetAutomatic (ID3_DEVICES_DEVICE_PARAMETER_DESCRIPTOR hDeviceParameterDescriptor, bool automatic)
Returns