OpenDocuments.EditDocument Method

This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

Opens the specified document for editing with its associated application or with the specified editor.

expression.EditDocument(bstrDocumentLocation, varProgID)

Parameters

expression

An expression that returns an OpenDocuments Control object.

bstrDocumentLocation

A string that contains the URL of the document to open for editing.

varProgID

An optional string that contains the ProgID of the application with which to edit the document. If this argument is omitted, the default editor for the document is used.

Return Value

true if the document was successfully opened; otherwise false.

Example

The following example uses the EditDocument method to open a specified document for editing. The example assumes the existence of a form named frmEditDoc that has two input boxes, EditFile and FileProgID.

<SCRIPT language="JavaScript">
function EditDocWithProgID()
{
    EditDocumentButton = new ActiveXObject("SharePoint.OpenDocuments.2");

    if (EditDocumentButton)
    {
        var strDocument = document.frmEditDoc.EditFile.value;
        var varProgID = document.frmEditDoc.FileProgID.value;

        EditDocumentButton.EditDocument(strDocument, varProgID);
   }
}
</SCRIPT>