Exago .NET API Documentation
AllowManagement Property
Example 
WebReports.Api.Roles Namespace > FolderCollection Class : AllowManagement Property

If True, users will be able to create root and sub folders, rename folders and delete folders in the user interface. If False, users cannot take action on folders and the Add Folder buttons are hidden from the user interface.

Storage Management Access Flags may restrict these functions even when explicitly enabled here.
Syntax
public System.bool AllowManagement {get; set;}
Remarks
The same as checking or unchecking the Admin Console > Roles > Main > Allow Folder Management checkbox.
Example
Allow the role "ReportUser" to manipulate folders.
Role myRole = api.Roles.GetRole("ReportUser");
myRole.Security.Folders.AllowManagement = true;
See Also

Reference

FolderCollection Class
FolderCollection Members