DeviceParameterDescriptor.flagCapability Property¶
Module: DeviceParameterDescriptor
Type: ParameterFlagCapability
Definition¶
Indicates whether the parameter is intended for manual configuration by the user (manual) or if it supports automatic management by the device or system (automatic).
flag_capability: ParameterFlagCapability
Exceptions
An error has occurred during Devices Library execution.
int get flagCapability => getFlagCapability();
set flagCapability(int value) => setFlagCapability(value);
Exceptions
An error has occurred during Devices Library execution.
public ParameterFlagCapability flagCapability
{
get => GetflagCapability();
set => SetflagCapability(ref value);
}
Exceptions
An error has occurred during Devices Library execution.
public int getFlagCapability() throws DevicesException
public void setFlagCapability(ParameterFlagCapability flagCapability) throws DevicesException
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesDeviceParameterDescriptor_GetFlagCapability (ID3_DEVICES_DEVICE_PARAMETER_DESCRIPTOR hDeviceParameterDescriptor, id3DevicesParameterFlagCapability * eFlagCapability)
int id3DevicesDeviceParameterDescriptor_SetFlagCapability (ID3_DEVICES_DEVICE_PARAMETER_DESCRIPTOR hDeviceParameterDescriptor, id3DevicesParameterFlagCapability eFlagCapability)
Returns