我已经能够使用与this SO question中使用的格式类似的格式生成简单的Word文档,但是每当我打开文档时,它都会在打印布局视图中打开。有没有一种方法可以默认以编程方式在Web布局视图中打开它?
答案 0 :(得分:1)
是的,您可以使用OpenXML.WordProcessing.View
。您需要创建一个View
,其Val
设置为ViewValues.Web
。然后,您需要创建一个Settings
对象并将view
附加到该对象上。最后,您需要创建DocumentSettingsPart
并将其Settings
属性设置为您创建的settings
对象。
这听起来比实际情况更糟糕,下面是一个完整的方法,从上面的question you mention加代码中获取代码。我已从该答案中删除了内存流代码以简化操作;此代码将在磁盘上创建一个文件。
public static void CreateWordDoc(string filename)
{
using (var wordDocument = WordprocessingDocument.Create(filename, WordprocessingDocumentType.Document))
{
// Add a main document part.
MainDocumentPart mainPart = wordDocument.AddMainDocumentPart();
// Create the document structure and add some text.
mainPart.Document = new Document();
Body body = mainPart.Document.AppendChild(new Body());
Paragraph para = body.AppendChild(new Paragraph());
Run run = para.AppendChild(new Run());
run.AppendChild(new Text("Hello world!"));
//the following sets the default view when loading in Word
DocumentSettingsPart documentSettingsPart = mainPart.AddNewPart<DocumentSettingsPart>();
Settings settings = new Settings();
View view1 = new View() { Val = ViewValues.Web };
settings.Append(view1);
documentSettingsPart.Settings = settings;
mainPart.Document.Save();
}
}