Getting Started with TMS FNC HTML Editor
Use TTMSFNCHTMLEditor when users need a dialog-based editor for HTML-capable text with a live preview and formatting commands.
Create an HTML Editor
- Create or drop
TTMSFNCHTMLEditor. - Set
Textto the HTML content to edit. - Assign
BitmapContainerwhen the content can include named images. - Call
Executeto open the editor. - Read
Textafter the dialog closes.
TMSFNCHTMLEditor1.Text := TMSFNCHTMLText1.Text;
if TMSFNCHTMLEditor1.Execute = mrOK then
TMSFNCHTMLText1.Text := TMSFNCHTMLEditor1.Text;
Next Steps
| Task | Guide |
|---|---|
| Edit and retrieve HTML text | Editing HTML text |
| Use bitmap-container images in edited content | Editing HTML text |