Click here to Skip to main content
15,892,768 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 83.2K   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;
namespace WinFormsCodeBox.Decorations
{[Serializable]  
 public  class RegexMatchDecoration: Decoration 
    {
        


        private string mRegexString;
        private string mRegexMatch;
        private TextUtils.Selectors.RegexSelector mRxSel;



        /// <summary>
        /// The Regular expression used to evaluate the regex expressed as a string
        /// </summary>
     public String RegexString
        {
            get { return mRegexString; }
            set
            {
                mRegexString = value;
              
            }
        }


        /// <summary>
        /// The Name of the group that to be selected, the default group is "selected"
        /// </summary>
        public String RegexMatch
        {
            get { return mRegexMatch; }
            set { mRegexMatch = value ; }
        }



        public override TextIndexList Ranges(string text)
        {
            mRxSel = new TextUtils.Selectors.RegexSelector()
            {
                RegexString = mRegexString,
                RegexMatch = mRegexMatch
            };
            return mRxSel.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