Applies To
Workbook Object.
Description
True if the workbook has been opened as read-only. Read-only.
See Also
Open Method, SaveAs Method.
Example
If the active workbook is read-only, this example saves it as NEWFILE.XLS.
If ActiveWorkbook.ReadOnly Then ActiveWorkbook.SaveAs fileName:="NEWFILE.XLS" End If