PowerPoint插件:在文本框

时间:2016-08-06 18:07:04

标签: powerpoint office-interop office-addins powerpoint-2013

解释问题

我正在使用powerpoint开发一个插件,我正在尝试创建一个带有对齐的文本框:

Shape newTextBox = currentSlide.Shapes.AddTextbox(...);
TextRange boxTextRange = newTextBox.TextFrame.TextRange;
textRange.ParagraphFormat.Alignment = PpParagraphAlignment.ppAlignJustify;

结果与预期不符。当我在此框中键入“输入”字符时,该行不合理。为什么?因为每个'enter'字符都会自动插入'paragraph'字符。以下是从powepoint文本框到word文档的复制粘贴文本的屏幕截图:

enter image description here

在每种情况下,该行都被视为段落的最后一行,并且没有理由。

但是,如果我尝试在default title layout slide的标题文本框中执行相同的操作,则没有“段落”字符。

提问时间......

有没有办法阻止这些字符自动输入文本框?也许我可以通过代码设置一个选项?

0 个答案:

没有答案