ItemClass property

String? ItemClass
Gets or sets the custom class name of this item.

Implementation

String? get ItemClass => this.PropertyBag[ItemSchema.ItemClass] as String?;
void ItemClass=(String? value)

Implementation

set ItemClass(String? value) =>
    this.PropertyBag[ItemSchema.ItemClass] = value;