4

我在这样的 Word 文档中创建了一个标签

    public void CreateLabel(string LabelName, int left, int top, int width, int height, string text)
    {
        var oRange = currentDoc.Bookmarks.get_Item("\\endofdoc").Range;
        var oshape = oRange.Document.Shapes.AddLabel(MsoTextOrientation.msoTextOrientationHorizontal, left, top, width, height);

        oshape.Name = LabelName;
        oshape.TextFrame.ContainingRange.Borders.OutsideLineStyle=WdLineStyle.wdLineStyleNone;
        oshape.TextFrame.ContainingRange.Text = text;
        oshape.TextFrame.ContainingRange.Font.Size = 14;
    }

但它永远不会将边框设置为无。有什么问题?

4

1 回答 1

3

有一篇关于 Formatting Lines of the Shapes 的好文章。你可以在那里找到有关 line formating 的内容,这是我的问题的解决方案。希望它对其他人有用。

  oshape.Line.Visible = MsoTriState.msoFalse;
于 2012-08-26T09:07:18.067 回答