Opens the WordWriter template specified by the templateFileName parameter.

public static void Open(this WordTemplate template, Microsoft.SharePoint.SPDocumentLibrary docLib, String fileName)
Public Static Sub Open(ByVal template As WordTemplate, ByVal docLib As MicroSoft.SharePoint.SPDocumentLibrary, ByVal fileName As String)

The current WordTemplate that is calling Open

SharePoint Document Library containing the template file to be opened

File name of the template Word file

A WordWriter template is a file created in Microsoft Word that contains merge fields. WordWriter supports Microsoft Word 97, 2000, 2002 (XP), 2003, and 2007. Do not use Open to open files created in earlier versions of Microsoft Word.

This is an extension method for the WordTemplate object to be used for opening documents from a SharePoint Document Library from within SharePoint. To use this method, you must add a reference to SoftArtisans.OfficeWriter.WordWriter.SharePointIntegration.dll

oWW.Open(myDocLib, "StringTemplate.doc"); 
oWW.Open(myDocLib, "StringTemplate.doc")