Praeclarum.RichText.RichText C# (CSharp) Method

RichText() public method

public RichText ( string text ) : System
text string
return System
		public RichText (string text)
		{
			if (text == null)
				throw new ArgumentNullException ("text");

			PlainText = text;
			classes = new Classes[text.Length];
		}