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.

automatic: bool

Exceptions

An error has occurred during Devices Library execution.
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

int
An error code.
See id3DevicesError file for the list of possible error codes.