Click here to Skip to main content
15,885,278 members
Articles / Desktop Programming / Windows Forms

CodeBox for Windows Forms

Rate me:
Please Sign up or sign in to vote.
4.95/5 (29 votes)
12 Nov 2009CPOL11 min read 82.8K   2.4K   99  
A RichTextBox for Windows Forms that supports flexible highlighting and background coloring.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using TextUtils.Selectors;

namespace WinFormsCodeBox.Decorations
{
    /// <summary>
    /// Decoration of a Specified line of text
    /// </summary>
 public   class LineDecoration:Decoration 
    {

        public int Line { get; set; }

        public override TextUtils.TextIndexList Ranges(string text)
        {
            LineSelector ls = new LineSelector();
            ls.Lines.Add(Line);
            return ls.SelectIndexes(text);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

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)
United States United States
Written software for what seems like forever. I'm currenly infatuated with WPF. Hopefully my affections are returned.

Comments and Discussions