FolderClass property

String? FolderClass
Gets or sets the custom class name of this folder.

Implementation

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

Implementation

set FolderClass(String? value) =>
    this.PropertyBag[FolderSchema.FolderClass] = value;