通过PowerPoint文本形状对象在VB.net中将回车转换为符号(垂直选项卡,男性符号,火星符号)

时间:2015-11-18 13:27:56

标签: vb.net powerpoint powerpoint-2013

我已经指定了一个字符串,它回滚到PowerPoint形状的texframe文本,但是当我从中获取时。回车现在是Ascii 11 VT。我搜索了谷歌,但我没有找到任何使用换行的解决方案异常,但这在其他情况下无效。

这是代码

_answerText = "Yes" + Chr(CharCode:=13) + "No"
powerPointShapeObject.TextFrame.TextRange.Text = _answerText

有人可以帮助我理解它为什么会发生。在此先感谢

2 个答案:

答案 0 :(得分:0)

请改为尝试:

_answerText = "Yes" & "\r" & "No"
powerPointShapeObject.TextFrame.TextRange.Text = _answerText

答案 1 :(得分:0)

PowerPoint根据PPT版本以及文本是幻灯片标题的一部分还是幻灯片上的任何其他文本,对行结尾使用不同的字符。

PPTFAQ网站上的这个页面更详细地解释了:

段落结尾和换行符 http://www.pptfaq.com/FAQ00992_Paragraph_endings_and_line_breaks.htm