DeviceModel.description Property¶
Module: DeviceModel
Type: string
Definition¶
Provides a detailed description of the device model, including its purpose, capabilities, and any other relevant information that can help in understanding what the device is and what it can do
This description aids in differentiating between various device models, especially when selecting appropriate hardware for specific tasks or configurations.
description: str
Exceptions
An error has occurred during Devices Library execution.
String get description => getDescription();
set description(String value) => setDescription(value);
Exceptions
An error has occurred during Devices Library execution.
public string description
{
get => Getdescription();
set => Setdescription(ref value);
}
Exceptions
An error has occurred during Devices Library execution.
public String getDescription() throws DevicesException
public void setDescription(String description) throws DevicesException
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesDeviceModel_GetDescription (ID3_DEVICES_DEVICE_MODEL hDeviceModel, char * description, int * descriptionSize)
int id3DevicesDeviceModel_SetDescription (ID3_DEVICES_DEVICE_MODEL hDeviceModel, const char * description)
Returns