Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Description

Sets or returns whether Excel will recommend - when the workbook is opened - that it be viewed in read-only mode.
C#
public boolean ReadOnlyRecommended{ get; set; }
vb.net
Public Property ReadOnlyRecommended() As Boolean

Examples

C#
//--- Get the ReadOnlyRecommended value for the workbook
bool readOnlyRec = wb.ReadOnlyRecommended;
 
//--- Set the ReadOnlyRecommended value for the workbook
wb.ReadOnlyRecommended = true;
vb.net
'--- Get the ReadOnlyRecommended value for the workbook
Dim readOnlyRec As Boolean = wb.ReadOnlyRecommended
 
'--- Set the ReadOnlyRecommended value for the workbook
wb.ReadOnlyRecommended = True
  • No labels