c# + autocad镜像命令

发布于 2024-11-11 17:35:22 字数 305 浏览 2 评论 0原文

var commandString = string.Format("_.mirror _C\r{0}\r{1}\r {2}\r{3} _n\r",
                pEnd.ToString2D(), pStart.ToString2D(), axialPStart.ToString2D(), axialPEnd.ToString2D());
            _acadCurrentDocument.SendCommand(commandString);

不起作用,我相信这是因为\r。 遇到这种情况该如何度过呢?

var commandString = string.Format("_.mirror _C\r{0}\r{1}\r {2}\r{3} _n\r",
                pEnd.ToString2D(), pStart.ToString2D(), axialPStart.ToString2D(), axialPEnd.ToString2D());
            _acadCurrentDocument.SendCommand(commandString);

does not work, i believe it is because \r.
How to pass trough this situation?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷默言语 2024-11-18 17:35:22

我没有方便的 AutoCAD 来测试这里,但我相信命令解释器不会单独将 \r 识别为按 ENTER 键。尝试使用 \n 代替:

"_.mirror _C\n{0}\n{1}\n {2}\n{3} _n\n"

I don't have an AutoCAD handy to test here, but I believe \r alone is not recognized by the command interpreter as a press on the ENTER key. Try using \n instead:

"_.mirror _C\n{0}\n{1}\n {2}\n{3} _n\n"
倾城泪 2024-11-18 17:35:22

将表达式中的空格替换为 \r 并检查 osmode 是否为零,因为捕获的两个点可以相同

Replace the spaces in your expression with \r and check that osmode is at zero because the two points of your capture can be the same

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文