ProtectedViewWindow.Edit(Object, Object) Method

Definition

Opens the workbook that is open in the specified Protected View window for editing.

public Microsoft.Office.Interop.Excel.Workbook Edit (object WriteResPassword, object UpdateLinks);
Public Function Edit (Optional WriteResPassword As Object, Optional UpdateLinks As Object) As Workbook

Parameters

WriteResPassword
Object

The password required to write to a write-reserved workbook.

UpdateLinks
Object

Specifies the way external references (links) in the file, such as the reference to a range in the Budget.xls workbook in the following formula =SUM([Budget.xls]Annual!C10:C25), are updated.

Returns

Returns a Workbook object.

Remarks

If the WriteResPassword parameter is omitted and the workbook requires a password, the user will be prompted for the password.

If the UpdateLinks parameter is omitted, the user is prompted to specify how links will be updated. If Excel is opening a file in the WKS, WK1, or WK3 format and the UpdateLinks argument is 0, no charts are created; otherwise Excel generates charts from the graphs attached to the file.

Avoid using hard-coded passwords in your applications. If a password is required in a procedure, request the password from the user, store it in a variable, and then use the variable in your code.

You can specify one of the values, listed in the following table, in the UpdateLinks parameter to determine whether external references (links) are updated when the workbook is opened.

0External references (links) will not be updated when the workbook is opened.
3External references (links) will be updated when the workbook is opened.

Applies to