[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IProtectionSettings.AllowUsingObjects

AllowUsingObjects Property

AllowUsingObjects

Gets or sets whether the user is allowed to select and edit drawing objects on a protected worksheet.

Drawing objects include shapes, charts, pictures, text boxes, and controls. This setting is meaningful only when worksheet protection is enabled.

Declaration
bool AllowUsingObjects { get; set; }
Property AllowUsingObjects As Boolean
Examples
worksheet.Protection = true;
IProtectionSettings protectionSettings = worksheet.ProtectionSettings;
protectionSettings.AllowUsingObjects = true;
bool allowUsingObjects = protectionSettings.AllowUsingObjects;