DeviceParameter.automatic Property¶
Module: DeviceParameter
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 id3DevicesDeviceParameter_GetAutomatic (ID3_DEVICES_DEVICE_PARAMETER hDeviceParameter, bool * automatic)
int id3DevicesDeviceParameter_SetAutomatic (ID3_DEVICES_DEVICE_PARAMETER hDeviceParameter, bool automatic)
Returns