DeviceParameterDescriptor.category Property¶
Module: DeviceParameterDescriptor
Type: string
Definition¶
Classifies the parameter into a category, aiding in the organization and presentation of parameters, especially in user interfaces where parameters are grouped by functionality or context.
String get category => getCategory();
set category(String value) => setCategory(value);
Exceptions
An error has occurred during Devices Library execution.
public string category
{
get => Getcategory();
set => Setcategory(ref value);
}
Exceptions
An error has occurred during Devices Library execution.
public String getCategory() throws DevicesException
public void setCategory(String category) throws DevicesException
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesDeviceParameterDescriptor_GetCategory (ID3_DEVICES_DEVICE_PARAMETER_DESCRIPTOR hDeviceParameterDescriptor, char * category, int * categorySize)
int id3DevicesDeviceParameterDescriptor_SetCategory (ID3_DEVICES_DEVICE_PARAMETER_DESCRIPTOR hDeviceParameterDescriptor, const char * category)
Returns