ICSharpCode.TextEditor.TextEditorControlBase.ParseFont C# (CSharp) Method

ParseFont() static private method

static private ParseFont ( string font ) : Font
font string
return System.Drawing.Font
		static Font ParseFont(string font)
		{
			string[] descr = font.Split(new char[]{',', '='});
			return new Font(descr[1], Single.Parse(descr[3]));
		}