DisplayName property

String? DisplayName
Gets or sets the display name of the folder.

Implementation

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

Implementation

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