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 |