[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.WriteProtection.ReadOnlyRecommended

ReadOnlyRecommended Property

ReadOnlyRecommended

Returns whether the Read Only Recommended option is selected.

When this option is enabled, applications that open the workbook can recommend opening it in read-only mode.

Declaration
public bool ReadOnlyRecommended { get; set; }
Public Property ReadOnlyRecommended As Boolean
Examples
WriteProtection protection = workbook.WriteProtection;
protection.ReadOnlyRecommended = true;
bool readOnlyRecommended = protection.ReadOnlyRecommended;