gpt4 book ai didi

c# - 如何隐藏单词文本框边框?

转载 作者:太空宇宙 更新时间:2023-11-03 13:32:33 24 4
gpt4 key购买 nike

我使用 C# 成功地打开了一个 word 文档并向其中写入了文本。现在我也想通过使用 c# 代码在 word 文档中插入一个文本框,我成功地使用了我在互联网上其他地方找到的代码。这是代码:-

Microsoft.Office.Interop.Word.Shape textbox = oDoc.Shapes.AddTextbox(MsoTextOrientation.msoTextOrientationHorizontal, 0, 0, 70, 30); //MsoTextOrientation.msoTextOrientationVertical
textbox.TextFrame.TextRange.Text = "Date";

它运行良好。但我的问题是,我想用 c# 代码隐藏文本框的默认边框。我试着寻找它,但找不到。

谁能帮帮我?提前致谢印度乌尼克里希南

最佳答案

Microsoft.Office.Interop.Word.Shape textbox = oDoc.Shapes.AddTextbox(MsoTextOrientation.msoTextOrientationHorizontal, 0, 0, 70, 30);`         
textbox.TextFrame.TextRange.Text = dateTimePicker1.Value.toShortDateString();`//this will insert a ms word textbox on ms word document.
textbox.Line.Visible = MsoTriState.msoFalse;` // this will hide the border or line of textbox.
textbox.TextFrame.TextRange.ParagraphFormat.Alignment = Microsoft.Office.Interop.Word.WdParagraphAlignment.wdAlignParagraphRight;` //this will align the text within the textbox to rthe right side of the textbox.

//在这个oDoc中是添加的文档。 Microsoft.Office.Interop.Word.Application word = new Microsoft.Office.Interop.Word.Application();
Microsoft.Office.Interop.Word.Document oDoc = new Microsoft.Office.Interop.Word.Document();

//我在Windows XP和Windows 7操作系统的不同电脑上用visual c# express 2010和word 2007和2010试过。

关于c# - 如何隐藏单词文本框边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20018329/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com