C#OpenXML - 表属性 - 从左侧设置缩进

时间:2014-01-07 22:16:37

标签: c# openxml

我在第一页上有一个带有表格的word文档。它是文档中的第一个表,只是第一页的一个表。我需要在此表上将“从左边缩进”设置为0“。我已经在文档中添加了一些文本:

using (WordprocessingDocument oDocument = WordprocessingDocument.Open(_ms, true))
{
    //Set paragraph, run, and runproperties objects. 
    Paragraph para = oDocument.MainDocumentPart.Document.Descendants<Paragraph>().First();
    Run run = para.AppendChild(new Run());
    RunProperties runPro = new RunProperties();
    Run lineBreak = new Run(new Break());

    //Set the text color and text value
    Color color = new Color() { Val = "FFFFFF" };
    Text text1 = new Text();
    text1.Text = "text";

    //Add the text to the body
    runPro.Append(color);
    run.Append(runPro);
    run.Append(text1, lineBreak);

    //Close the handle
    oDocument.Close();
}

我已经阅读了一些关于TableIndentation类的内容,但是没有找到任何使用它的例子。有人有这方面的经验吗?

由于

3 个答案:

答案 0 :(得分:1)

您是否尝试使用Open XML SDK Productivity Tool(请注意此页面上有多个下载内容)来检查具有您需要的文档?如果没有,请这样做。它会回答你的问题。

答案 1 :(得分:0)

您可以像这样在表属性类中指定表缩进。

TableProperties tPr = new TableProperties();
tPr.TableIndentation = new TableIndentation() { Type = indentationType, Width = indentationWidth };

答案 2 :(得分:0)

使用此功能并在DXA(1"=1440 something)

中提供宽度
props.TableIndentation = new TableIndentation() { Type = TableWidthUnitValues.Dxa, Width=-997 };