Click here to Skip to main content
15,886,676 members
Articles / Programming Languages / C#
Article

HTMLTextBox

Rate me:
Please Sign up or sign in to vote.
4.77/5 (30 votes)
24 Jan 20072 min read 213K   3.5K   109   48
Provides a user control that allows the user to edit HTML page.

HTMLTextBox Control

Introduction

This Rich Text Editor-style control comes from a reference of the "Body Editor" in "New Message" dialog of Outlook Express. As we know, although a RichTextBox control is already provided within .NET Framework by Microsoft to display rich text for users, it still lacks in some real Rich Editing works which are extremely desirable. As a consequence, this control is right for the real editing work.

Inside HTMLTextBox

As a subclass of UserControl, HTMLTextBox mainly consists of two parts: one ToolBar and one WebBrowser control.

How to enable the WebBrowser to be editable?

The WebBrowser will enter "Edit Mode" after performing the following code.

C#
webBrowserBody.Document.ExecCommand("EditMode", false, null);

How to overstrike your font

Perform the following code to enable the BOLD font on the selected characters.

C#
webBrowserBody.Document.ExecCommand("Bold", false, null);

All the operations in this control are executed by invoking the function ExecCommand of WebBrowser.Document. For detailed info about ExecCommand, please refer to Microsoft MSDN.

PS: As announced by Microsoft in Command Identifiers, some of the Commands are mentioned to be no more applicable, however, they still work well. Please do not rely it 100 percent, just give a shot!

About Optional Fonts

C#
foreach (FontFamily family in FontFamily.Families)
{
    toolStripComboBoxName.Items.Add(family.Name);
}

All the optional fonts in this control are retrieved by means of the code above.

About Font Size

In HTML page, seven types of font size are applicable (from 1 to 7). And the relationship between the HTML font size and the common font size is summarized in the following table:

HTML Font SizeCommon Font Size
18
210
312
414
518
624
736

To avoid confusion, the Common Font Size will display for users instead of the HTML Font Size.

How to use HTMLTextBox

As a UserControl, HTMLTextBox is very convenient for your use. And I do not override or expose too many properties or methods. By far, it just has two public properties": Text and Images. If you want more, you are free to add them by yourself for any purpose.

Text: to set or get more meaningful text, it is overridden.

  • get: return the entire HTML content including <html> and <body> etc.
  • set: set any text value and display them in this control, meanwhile, the "/r/n" will be automatically translated into <br>.

Images: to get the unique directories of all the attached images

NOTE: the COM object "Microsoft HTML Object Library" will be referenced by HTMLTextBox.

About Sample

Email Sender Example

HTMLTextBox Control

Before running Sample, the following code needs to be changed accordingly.

In lines 23 - 26 in MailSender.cs

C#
string host = "192.168.22.12";
int port = 25;
string userid = "jay.liu";
string password = "1111";

Loathsome BUG

The image inserted into the edit body cannot be resized, and no exception will be thrown. For now, I have no idea about the reason or solution.

History

First Version (1/22/2007).

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionResizing Images Pin
piotrekz525-Apr-07 2:32
piotrekz525-Apr-07 2:32 
QuestionSaving as MHTML? Pin
yannlh9-Apr-07 8:33
yannlh9-Apr-07 8:33 
AnswerRe: Saving as MHTML? Pin
Riz Thon8-Oct-07 0:09
Riz Thon8-Oct-07 0:09 
GeneralChange Background Color ?! Pin
baer99928-Mar-07 9:21
baer99928-Mar-07 9:21 
AnswerRe: Change Background Color ?! Pin
Riz Thon8-Oct-07 0:06
Riz Thon8-Oct-07 0:06 
GeneralFile Link Pin
baer9999-Mar-07 4:54
baer9999-Mar-07 4:54 
GeneralRe: File Link Pin
Jeason Zhao12-Aug-09 16:01
Jeason Zhao12-Aug-09 16:01 
QuestionHow do I turn off the Save Changes dialog box? Pin
jetstreamin13-Feb-07 16:45
jetstreamin13-Feb-07 16:45 
AnswerRe: How do I turn off the Save Changes dialog box? Pin
Leon_26-Feb-07 23:39
Leon_26-Feb-07 23:39 
GeneralRe: How do I turn off the Save Changes dialog box? Pin
Leon_27-Feb-07 20:52
Leon_27-Feb-07 20:52 
GeneralRe: How do I turn off the Save Changes dialog box? Pin
Michel Robert 20043-Jan-09 10:28
Michel Robert 20043-Jan-09 10:28 
AnswerRe: How do I turn off the Save Changes dialog box? Pin
piotrekz525-Apr-07 2:27
piotrekz525-Apr-07 2:27 
AnswerRe: How do I turn off the Save Changes dialog box? Pin
Jeason Zhao12-Aug-09 16:07
Jeason Zhao12-Aug-09 16:07 
GeneralRegarding "Loathsome BUG" Pin
sonic_eel31-Jan-07 22:13
sonic_eel31-Jan-07 22:13 
GeneralFont F Pin
Laurent Muller29-Jan-07 20:08
professionalLaurent Muller29-Jan-07 20:08 
QuestionHow to use in Web Application Pin
Jitesh774625-Jan-07 7:08
Jitesh774625-Jan-07 7:08 
AnswerRe: How to use in Web Application Pin
andrewlarson29-Jan-07 6:10
andrewlarson29-Jan-07 6:10 
GeneralRe: How to use in Web Application Pin
lemravec15-Feb-07 8:39
lemravec15-Feb-07 8:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.