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

Links with arbitrary text in a RichTextBox

By , 1 Jan 2005
 

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:

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:

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:

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:

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)

About the Author

mav.northwind
Software Developer (Senior) 4voice AG
Germany Germany
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   
QuestionProblem with linkmemberHitych30 Jan '13 - 21:43 
AnswerRe: Problem with linkmemberWerner van Deventer9 Feb '13 - 7:16 
GeneralRe: Problem with linkmemberHitych12 Feb '13 - 20:11 
QuestionUnderline on hover. Please helpmemberflap jack23 Dec '12 - 22:07 
QuestionThank you!memberhermun477 Sep '12 - 3:36 
QuestionWrong link insertion codemembermnnn9 Jun '12 - 13:33 
QuestionGreat article!memberDaniel Carvalho Liedke26 Apr '12 - 7:45 
QuestionNew BugmemberBib3469029 Nov '11 - 5:24 
Questionhow to remove link [modified]memberBib3469028 Nov '11 - 23:37 
Generalnot workmemberasugix27 May '11 - 12:56 
GeneralMy vote of 5memberValeriant13 May '11 - 5:54 
GeneralProblem with a Link at the beginning of the textmemberlonewolfdev29 Apr '11 - 15:16 
QuestionHow to get the LinkText programatically?memberz_a_p18 Mar '11 - 7:23 
QuestionIs there an update?memberAl_Pennyworth24 Feb '11 - 5:27 
GeneralThank you.memberMember 183329124 Dec '10 - 12:00 
Generalvote 5memberCem Usta9 Nov '10 - 16:24 
GeneralMy vote of 5memberLomis22 Aug '10 - 22:48 
GeneralMy vote of 5memberSammy Hale1 Aug '10 - 12:33 
GeneralThis does not work with Outlook Form RegionsmemberBillyBox30 Apr '10 - 13:49 
GeneralMy vote of 2memberUrs Scherrer14 Apr '10 - 4:06 
GeneralRe: My vote of 2memberUrs Scherrer15 Apr '10 - 4:36 
GeneralRe: My vote of 2memberValeriant13 May '11 - 5:51 
GeneralLoadFile methodmemberColin Vella6 Jan '10 - 6:02 
GeneralExcellent manmemberi_islamian19 Oct '09 - 1:52 
QuestionMajor bug?memberErik Jonsson9 Oct '09 - 2:07 
AnswerRe: Major bug?memberErik Jonsson9 Oct '09 - 3:23 
QuestionLinks with different foreground colors?memberpsouza4micronet13 Aug '09 - 14:29 
GeneralLitle fixmemberchris-ex12 Aug '09 - 11:10 
RantRe: Litle fixmember[CC]20 Sep '10 - 0:10 
GeneralRe: Litle fixmemberMember 348099828 Jun '12 - 0:52 
JokeBeautiful work!memberpsouza4micronet7 Aug '09 - 3:59 
GeneralUniCode Links FIXED !memberdady_jabery1718 Jul '09 - 20:06 
GeneralRe: UniCode Links FIXED !memberbitedge6 Mar '13 - 0:49 
GeneralGreat workmemberchris-ex10 Jul '09 - 1:02 
GeneralUNICODE LINK [modified]memberRoxanaZhi2 Jul '09 - 2:47 
GeneralRe: UNICODE LINKmemberdady_jabery1718 Jul '09 - 20:02 
GeneralDo you have VB.net version of this code.memberitshibu200630 Jun '09 - 21:39 
AnswerRe: Do you have VB.net version of this code.memberjeng111130 Apr '10 - 7:33 
QuestionHow would i turn this into a Control?memberMember 350952314 Jun '09 - 17:27 
NewsUpdated version Including Link Editing, custom formatting and some fixesmemberFade (Amit BS)30 Apr '09 - 9:55 
GeneralRe: Updated version Including Link Editing, custom formatting and some fixesmember[CC]20 Sep '10 - 0:17 
AnswerRe: Updated version Including Link Editing, custom formatting and some fixesmemberFade (Amit BS)20 Sep '10 - 7:39 
GeneralRe: Updated version Including Link Editing, custom formatting and some fixesmemberchrisbray17 Oct '10 - 3:08 
QuestionSending mail using Lotus Notes 6.5.5 with VB 2008memberbrindhakr1 Mar '09 - 23:39 
GeneralAutoDectect MyLinksmemberghbloos14 Jan '09 - 8:14 
GeneralGeneric solution for i18n problemmemberTsuda Kageyu29 Dec '08 - 15:20 
Question???membermorning_star21200528 Oct '08 - 16:24 
GeneralLink Color, I neeed helpmemberEng.Habeba13 Jul '08 - 4:34 
GeneralRe: Link Color, I neeed helpmembermav.northwind13 Jul '08 - 6:23 
GeneralRe: Link Color, I neeed helpmemberEng.Habeba13 Jul '08 - 21:10 

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 2 Jan 2005
Article Copyright 2005 by mav.northwind
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid