Win32 RichEdit 垂直对齐段落

发布于 2024-11-15 07:44:51 字数 143 浏览 3 评论 0原文

我需要在 RichEdit 中垂直对齐段落(顶部、中心、底部)。

我用谷歌搜索了一下,没有发现任何关于这个问题的信息。有谁知道

实现此目标的解决方法。我使用C++ Builder 2010,有VCL或Windows API方式的解决方案吗?

I need to align paragraph vertically (top, center, bottom) in a RichEdit.

I googled it and found nothing about this issue. Does anybody know a workaround

to achive this. I use C++ Builder 2010, are there any VCL or Windows API way solution?

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

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

发布评论

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

评论(1

浅黛梨妆こ 2024-11-22 07:44:51

我认为 TRichEdit 不支持垂直文本对齐。例如,以这个小型 RTF 文档为例:

{\rtf1\ansi\ansicpg1250\deff0\deflang1048{\fonttbl{\f0\fnil\fcharset0 Calibri;}}\viewkind4\uc1\pard\sa200\sl276\slmult1\qc \lang9\f0\fs22\vertalc Text\par}

当这个放入 TRichEdit 后,“文本”仅水平对齐。用写字板打开文档,看起来完全一样。用 Ms Word 打开它,“文本”在页面中垂直和水平居中。由于 TRichEdit 不支持 \vertalc,因此不需要任何类型的 API 来设置该属性。

I don't think TRichEdit supports Vertical Text Alignment. For example take this tiny RTF document:

{\rtf1\ansi\ansicpg1250\deff0\deflang1048{\fonttbl{\f0\fnil\fcharset0 Calibri;}}\viewkind4\uc1\pard\sa200\sl276\slmult1\qc\lang9\f0\fs22\vertalc Text\par}

When this is put into TRichEdit the "Text" is only aligned horizontally. Open the document with WordPad and it looks absolutely the same. Open it up with Ms Word and the "Text" is centered both vertically and horizontally in the page. Since TRichEdit doesn't support the \vertalc, there's no need for any kind of API to set that attribute.

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