Click here to Skip to main content
Click here to Skip to main content

RicherTextBox

By , 17 Mar 2008
 

Introduction

The RicherTextBox .NET user control is an extension of the RichTextBox control. It has integrated toolstrips with the most common formatting options - choosing fonts, font style (bold, underline, italic), text alignment, bullets, indentation, zooming in and out and searching and replacing. Each one of the tools in the toolstrip can be hidden or shown in design-time or by using the code. In addition to the toolstrip, most of the functionality is also combined in a context menu. It also contains public methods for managing the format using code when the usage of the toolstrip is not appropriate. Save and load funcionality is also implemented. The RicherTextBox control is ready-to-use and its basic usage is as easy as dragging it from the toolbox into the container.

The toolstrip of RicherTextBox:

Sample Image - maximum width is 600 pixels

The context menu of RicherTextBox:

Sample Image - maximum width is 600 pixels

Using the Code

This control should be used as any other user control - just drag-drop in a designer, or create a new instance using a code editor. The only thing you need to do is to add a reference to the DLL-file of the control or the whole project in your project's references and add a using directive in your code file to the namespace RicherTextBox.

// Include RicherTextBox namespace to be able to access the control's 
// properties and methods
using RicherTextBox;

Without any other code, the control will became available in its full capabilities. If you want to enable or disable some functionality, it can be done in design time using the properties in Toolstrip items visibility and Toolstrip single items visibility categories, or by setting them using C# code.

Here are some examples of hiding items in the toolstrip using code. Let's assume that the control is implemented in a form and its name is set to richerTextBox1 .

Hiding a group of tools:

//
// To hide the group of buttons for text alignment using the properties
//
richerTextBox1.GroupAlignmentVisible = false;
//
// To hide the group of buttons for text alignment using the methods
//
richerTextBox1.HideToolstripItemsByGroup
    (RicherTextBox.RicherTextBoxToolStripGroups.Alignment, false);

The method HideToolstripItemsByGroup is declared as follows...

 public void HideToolstripItemsByGroup
    (RicherTextBoxToolStripGroups group, bool visible)

... where RicherTextBoxToolStripGroups is enumeration including the values:

public enum RicherTextBoxToolStripGroups
{
    SaveAndLoad = 0x1,
    FontNameAndSize = 0x2,
    BoldUnderlineItalic = 0x4,
    Alignment = 0x8,
    FontColor = 0x10,
    IndentationAndBullets = 0x20,
    Insert = 0x40,
    Zoom = 0x80
}

The values in HideToolstripItemsByGroup's first parameter can be combined using the bitwise or operator (|):

// Hiding more than one group of tools using a combination of enumerable values 
// as a parameter
richerTextBox1.HideToolstripItemsByGroup(
    RicherTextBoxToolStripGroups.Alignment |
    RicherTextBoxToolStripGroups.BoldUnderlineItalic,
    false);

This is what the control looks like after executing this code:

Sample Image - maximum width is 600 pixels

As you can see, the alignment buttons and the bold, italic, underline buttons are now hidden.

Using the Methods for Accessing Functionality (Examples)

Let's say you want to toggle the bold parameter of the selected text from the code, it is done in a very simple way:

// Toggling Bold on the selected text
richerTextBox1.ToggleBold();    

Setting the size of the used font:

// Setting the font size
richerTextBox1.SetFontSize(8.25f);

The same is used for all of the formatting functionality of the control.

If you don't want the save and load buttons visible (or, even if they're visible), you will probably want to access the text which the user has typed in the control. Two properties are supplied for this purpose:

  • Text is an overriding property which contains the text in the RicherTextBox in plain-text format.
  • Rtf holds the text in rich-text format.

Both properties can be set and read, and the Rtf property also has simple error protection: when a string with invalid format is associated with it, instead of throwing ArgumentException, the invalid text is simply set as plain-text format:

// Setting the text
richTextBox1.Text = "This is an example of setting the text in a RicherTextBox";

// Now, an example of setting the Rtf property to an invalid value:
// The value "Test" is an invalid rich-text format string, but the RicherTextBox
// control will simply read it as plain-text instead of throwing exceptions
richTextBox1.Rtf = "Test";    

Searching and Replacing

All that you need is to show (or, not hide) the toolstrip for finding. All functionality of searching and replacing is integrated in the control.

Sample Image - maximum width is 600 pixels

History

  • Version 1.0 - 16 March, 2008: First released version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Svetoslav Savov
Software Developer Interconsult Bulgaria
Bulgaria Bulgaria
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionRead-Only TextmemberMember 20294347 Jan '13 - 3:37 
QuestionHow to get the selected textmemberThe_F1 May '12 - 23:58 
QuestionProblem with adding multiple instance of RicherTextBox to a formmemberFernandoUY6 Mar '12 - 4:46 
AnswerRe: Problem with adding multiple instance of RicherTextBox to a formmemberFernandoUY6 Mar '12 - 4:53 
Questionhow to give html input?memberJoyalg16 Feb '10 - 2:21 
GeneralI added a ValueChanged event to the control...memberSteve McKenna1 Feb '10 - 6:42 
Questionis it possible to open a specific *.rtf file by parameter ?memberBernd Pfeiff6 Dec '09 - 3:47 
QuestionHow to numbering a linememberladuc1 Dec '09 - 15:35 
Generalsave RicherTextBox Content to DBmemberBernd Pfeiff3 Sep '09 - 6:39 
QuestionHtml exportmemberMember 351717930 May '08 - 5:01 
Generalmultiple font attributesmemberGary O'Neal25 Mar '08 - 4:54 
QuestionTables?membergeorani25 Mar '08 - 2:48 
GeneralGood control - perhaps the article needs a bit extra...memberrobvon23 Mar '08 - 23:04 
QuestionVS 2005 version available ?memberBillWoodruff22 Mar '08 - 4:26 
AnswerRe: VS 2005 version available ?memberCélio30 Mar '08 - 8:08 
Generalfao Celio Re: VS 2005 version available ?memberBillWoodruff30 Mar '08 - 19:50 
Generalre RicherTextBoxmemberBillWoodruff17 Mar '08 - 14:38 
GeneralRe: re RicherTextBoxmember leppie 18 Mar '08 - 1:17 
GeneralRe: re RicherTextBoxmemberSvetoslav Savov18 Mar '08 - 21:21 
GeneralRe: re RicherTextBoxmemberBillWoodruff18 Mar '08 - 23:07 

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 17 Mar 2008
Article Copyright 2008 by Svetoslav Savov
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid