Click here to Skip to main content
15,885,720 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 System.IO;
namespace TextUtils.Selectors
{
  public  class AllLinesSelector:Selector 
    {
   

        public override TextIndexList SelectIndexes(string text)
        {
            StringReader sr = new StringReader(text);
            TextIndexList tl = new TextIndexList();
            int currentPos = 0;
            while (sr.Peek() != -1)
            {
                string line = sr.ReadLine();
                tl.Add(new TextIndex (currentPos, line.Length));
                currentPos += line.Length;
            }
            return tl;
        }

        public override List<string> SelectText(string text)
        {
            StringReader sr = new StringReader(text);
            List<string> result = new List<string>();
            while (sr.Peek() != -1)
            {
                result.Add(sr.ReadLine());
            }
            return result;
        }


        
        public override bool DoesTextIndexExist(string text)
        {
            return (text != null && 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