Click here to Skip to main content
15,867,594 members
Articles / Desktop Programming / Windows Forms
Article

Links with arbitrary text in a RichTextBox

Rate me:
Please Sign up or sign in to vote.
4.84/5 (80 votes)
1 Jan 2005CPOL4 min read 673.5K   11.9K   96   210
An extended RichTextBox that allows to enter links <i>not</i> starting with one of the standard protocols.

Sample Image - RichTextBoxLinks.gif

Introduction

From time to time, somebody asks in the forums if it is possible to add links to a RichTextBox that don't start with http://, ftp:// or another one of the 'standard' protocols.

Well, here's the solution.

Background

The standard RichTextBox has a quite handy property: DetectUrls.

When this property is set, every time the text in the RichTextBox is changed, the text is parsed for URLs and the matching text ranges are formatted as links (underlined, blue foreground by default).

The problem is, only links starting with one of the recognized protocols (http:, file:, mailto:, ftp:, https:, gopher:, nntp:, prospero:, telnet:, news:, wais:, outlook:) are recognized and reformatted. When you don't want such a reference, you're stumped, because the standard RichTextBox doesn't allow for manually setting the link style at all.

Fortunately, the .NET RichTextBox is only a wrapper around the Win32 RichEdit control, and so its functionality can be extended by adding the necessary wrappers to send the messages the RichEdit control needs.

How the RichEdit control manages style changes

The RichEdit control defines two sets of messages that control how part of the text is being rendered. One set EM_GETCHARFORMAT, EM_SETCHARFORMAT) is responsible for setting and querying formatting options for character ranges inside a paragraph, the other one (EM_GETPARAFORMAT, EM_SETPARAFORMAT) sets/queries formatting options for entire paragraphs (like alignment, for example).

We'll use the first one to set the desired style.

When you look up EM_SETCHARFORMAT's documentation, you'll see that a CHARFORMAT structure is used to transmit the formatting information. For recent versions of the RichEdit control (V2.0 and up), this structure is extended to a CHARFORMAT2 struct holding additional information.

The definition of this CHARFORMAT2 struct as taken from the platform SDK:

typedef struct _charformat2 {
    UINT cbSize;
    DWORD dwMask;
    DWORD dwEffects;
    LONG yHeight;
    LONG yOffset;
    COLORREF crTextColor;
    BYTE bCharSet;
    BYTE bPitchAndFamily;
    TCHAR szFaceName[LF_FACESIZE];
    WORD wWeight;
    SHORT sSpacing;
    COLORREF crBackColor;
    LCID lcid;
    DWORD dwReserved;
    SHORT sStyle;
    WORD wKerning;
    BYTE bUnderlineType;
    BYTE bAnimation;
    BYTE bRevAuthor;
    BYTE bReserved1;
} CHARFORMAT2;

Among other information, there are two members controlling formatting aspects that can be expressed as flags, i.e., part of the text has this formatting property set or not. These members are dwMask and dwEffects. dwMask is used to specify whether you want to set/query a given formatting option and dwEffect holds the actual value.

There's a flag CFE_LINK that does just what we want: give part of the text the link appearance and behaviour.

Wrapping up the structs and messages

In order to tell the RichEdit control that we want to assign a given character format to part of the text, you need to send the Windows message EM_SETCHARFORMAT to the control. If you're interested in how exactly the Win32 struct has been wrapped and how SendMessage() has been declared, please take a look at the source code.

Rewriting the struct declarations was quite straightforward, the only member that requires a little thought is szFaceName, because C# structs can't be declared to hold a character array of a given size. Microsoft accounted for this case, however, by supplying the SizeConst field to the MarshalAs attribute.

Using the class

When you use the extended RichTextBox, you'll have several new methods available:

C#
public void InsertLink(string text);
public void InsertLink(string text, int position);

to insert a link at a given position (or at the current insert position if not specified).

In case the link text is not suitable as a result of the LinkClicked event (for example, if you have several identical link text that you want to reference different hyperlinks), there are two additional methods where you can specify an additional hyperlink string:

C#
public void InsertLink(string text, string hyperlink);
public void InsertLink(string text, string hyperlink, int position);

They behave like the previous two methods, but after the link text itself, the hyperlink string is added invisibly, separated by a hash ('#'). For example, calling:

C#
InsertLink("online help", "myHelpFile.chm");

will give "online help#myHelpFile.chm" in the LinkClickedEventArgs. That way, you can manage link texts and hyperlinks independently.

The base methods to set or clear the link character format are:

C#
public void SetSelectionLink(bool link);
public int GetSelectionLink();

Both operate on the current selection. The return value of GetSelectionLink() has been made int instead of bool because the current selection can contain link - and regular parts and thus yield inconsistent results. This is reflected by returning -1, whereas consistent link style yields 1 and consistent non-link style yields 0.

Caveats

There's one detail to take care of. By default, the DetectUrls property of the standard RichTextBox is set, so whatever you type is reformatted automatically.

My extension turns this property off by default because it can interfere with links that have been added programmatically. When the DetectUrls property is set to true and you modify the text adjacent to one of your links, the link formatting will be lost. This does not happen when DetectUrls is set to false, so I recommend you leave it switched off.

Possible extensions

Just like I added support for CFE_LINK, it should be a breeze to add support for other formatting flags as well (for example, CFE_SUBSCRIPT or CFE_SUPERSCRIPT) to add new formatting options not available out of the box.

The necessary flag definitions are included in the source code already so that you don't have to look them up in the platform SDK anymore.

Modification History

  • 02.01.2005

    Initial release.

  • 03.01.2005

    Added support for invisible hyperlink strings.

License

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


Written By
Software Developer (Senior) 4voice AG
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralForm Border &amp; Title Bar color Pin
eddy_mi23-Nov-05 8:24
eddy_mi23-Nov-05 8:24 
GeneralRe: Form Border &amp; Title Bar color Pin
mav.northwind17-Aug-06 9:46
mav.northwind17-Aug-06 9:46 
GeneralRestoring links in the RTF Pin
erking7-Oct-05 3:01
erking7-Oct-05 3:01 
GeneralRe: Restoring links in the RTF Pin
mav.northwind7-Oct-05 4:03
mav.northwind7-Oct-05 4:03 
GeneralRe: Restoring links in the RTF Pin
erking8-Oct-05 7:17
erking8-Oct-05 7:17 
GeneralRe: Restoring links in the RTF Pin
Paul Cookson17-Feb-06 22:33
Paul Cookson17-Feb-06 22:33 
GeneralRe: Restoring links in the RTF Pin
erking19-Feb-06 21:52
erking19-Feb-06 21:52 
GeneralRe: Restoring links in the RTF Pin
Paul Cookson21-Feb-06 22:18
Paul Cookson21-Feb-06 22:18 
GeneralRe: Restoring links in the RTF Pin
SaschaBaumgart6-Mar-06 5:20
SaschaBaumgart6-Mar-06 5:20 
Hi mav, z3al0t and Paul,

this looks all like good work so far. I hope his hidden stuff technique solves several problems i have on my project.

1. Serializing and deserializing links.
2. Add information to the rtf so i can write a parser to convert my text into a proprietary xml format.
3. Add 'paragraph folding'. Currently i have the problem that i cannot match the unfold button to the part in the rtf it should unfold AFTER editing the text before the folded paragraph.

My previous approach to 2. and 3. was to guard all editing actions in the richtextbox. That approach failed to handle pasting of text. Maybe i just wasn't bright enough to do it properly. Confused | :confused: Now i'm gonna test z3al0ts extension. Smile | :)


MfG
Sascha
GeneralRe: Restoring links in the RTF Pin
Benny Raymond29-Sep-06 11:36
Benny Raymond29-Sep-06 11:36 
GeneralRe: Restoring links in the RTF Pin
itshibu200627-Jul-09 3:34
itshibu200627-Jul-09 3:34 
GeneralLink lost when minimize to systray Pin
Labero25-Aug-05 11:31
Labero25-Aug-05 11:31 
AnswerRe: Link lost when minimize to systray Pin
mav.northwind25-Aug-05 20:22
mav.northwind25-Aug-05 20:22 
GeneralClear all text Pin
Labero24-Aug-05 19:18
Labero24-Aug-05 19:18 
GeneralRe: Clear all text Pin
mav.northwind24-Aug-05 19:49
mav.northwind24-Aug-05 19:49 
GeneralRe: Clear all text Pin
Labero25-Aug-05 7:38
Labero25-Aug-05 7:38 
General.Rtf Link Pin
zx2c426-May-05 10:19
zx2c426-May-05 10:19 
GeneralRe: .Rtf Link Pin
mav.northwind24-Aug-05 19:54
mav.northwind24-Aug-05 19:54 
GeneralLinks Lost When Saving Pin
jazzfan16-May-05 14:43
jazzfan16-May-05 14:43 
GeneralRe: Links Lost When Saving Pin
mav.northwind16-May-05 19:44
mav.northwind16-May-05 19:44 
GeneralRe: Links Lost When Saving Pin
pal118329-Sep-06 23:23
pal118329-Sep-06 23:23 
GeneralImage EMF and Link Pin
nhooge11-May-05 1:01
sussnhooge11-May-05 1:01 
Generalutf-8 strings Pin
Mahdi.Jabbari8-May-05 1:38
Mahdi.Jabbari8-May-05 1:38 
GeneralRe: utf-8 strings Pin
Mahdi.Jabbari8-May-05 4:14
Mahdi.Jabbari8-May-05 4:14 
GeneralRe: utf-8 strings Pin
fethigurcan24-Feb-06 3:48
fethigurcan24-Feb-06 3:48 

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.