activeX/OCX 简单 HTML 编辑器
我正在寻找一个简单的 HTML 编辑器。
该软件包应满足以下条件:
- 生成不带 CSS 的旧类型 HTML
- 完全支持从右到左和希伯来字体
- 必须是 ActiveX / OCX 组件
到目前为止我发现的市场上大多数编辑器都生成复杂的 HTML
您可以推荐什么?
已编辑
我需要它作为桌面应用程序。我希望用户能够像 HTML 编辑器一样编辑文本(字体样式、对齐方式)等。
I am looking for a simple HTML editor.
This package should fulfill the following:
- Generates old type of HTML with no CSS
- Fully supports Right-To-Left and Hebrew fonts
- Must be an ActiveX / OCX component
Most editors in the market that I found so far, generate sophisticated HTML
What can you recommend?
EDITED
I need it for a desktop application. I want the user to be able to edit text like in HTML editor (font styles, alignment) etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在桌面应用程序中效果良好的一种选择是使用 Richtext 控件,例如用于编辑器的 TRichEdit 或 TRichView(商业)。
RTF 支持 unicode 以及 LTR 和 RTL(从右到左)语言。
生成的 RTF 源可以导出为 HTML,可以使用 TRichView 导出功能或转换器库,例如我的(商业)ScroogeXHTML 库。
One option which works well in desktop applications would be using a Richtext control, like TRichEdit or TRichView (commercial) for the editor.
RTF supports unicode and LTR and RTL (right-to-left) languages.
The generated RTF source can be exported to HTML, either with TRichView export functions or a converter library like my (commercial) ScroogeXHTML library.
nBit HTML 编辑器 ActiveX/OCX(商业) 似乎适合您要求,除了该网站没有明确支持希伯来语/从右到左,所以我们假设它不支持这些,除非您可以下载演示并尝试一下。我没有使用过所以我不能说。
它支持但似乎不需要CSS。
nBit HTML Editor ActiveX/OCX (Commercial) seems to fit your requirements, except that the website does not state explicit support for hebrew/Right-to-left, so let's assume it doesn't support those, unless you can download a demo and try it. I have not used it so I cannot say.
It supports but does not seem to require CSS.
TRichView 可以将 HTML 导入 RTF,然后将其导出为 HTML。我通过在客户端之间发送 HTML 将其用于聊天程序消息编辑器和群聊消息查看器。我不确定 span 标签。
TRichView can import the HTML into RTF, then export it as HTML. I use it for a chat program message composer and a group chat message viewer by sending HTML between clients. I'm not sure about the span tag.
用于允许编辑的
TWebBrowser
组件;我最近没有检查过,但这是我在 Google 上可以找到的:如何在 TWebBrowser 中启用文档编辑
使用它并不像人们希望的那么简单,但我记得用它做了一些很好的事情。
The
TWebBrowser
component used to allow editing; I haven't checked it lately but this is what I can find on Google:How to enable editing of a document in TWebBrowser
Using it wasn't as straightforward as one would wish, but I remember doing pretty good things with it.