While showing multiline text in dynamic display, empty strings between line feeds show the text from the previously called DrawText function.
上次发布: August 25, 2014No Product Found
漏洞 ID 编号
NIM054362
已提交
February 19, 2010
上次修改时间
April 2, 2025
适用范围
No Product Found
找到的版本
9.3
编程语言
C#
状态
Will Not Be Addressed
开发团队已考虑过该问题或请求,并决定不会解决该问题。 问题的“其他信息”部分可能包含进一步说明。
附加信息
We apologize that we were unable to address this issue within the current product support cycle. If the issue continues to affect your work in a supported release, please contact Technical Support.
解决办法
The original code looked like this:dynamicDisplay.DrawText(bikePoint, "1 1 1\n2 2 2\nI WILL REPEAT\n4 4 4");dynamicDisplay.DrawText(m_gpsPosition1, "A A A\nB B B\n\nD D D");A simple workaround to this issue is to modify the second line by adding a space between the two "\n"dynamicDisplay.DrawText(m_gpsPosition1, "A A A\nB B B\n \nD D D");