AODL.Document.Styles.FontFamilies.HtmlFont C# (CSharp) Method

HtmlFont() public static method

Replace some numberings of OO fonts
public static HtmlFont ( string ooFont ) : string
ooFont string The oo font.
return string
		public static string HtmlFont(string ooFont)
		{
			try
			{
				string[] number		= new string[] {"0","1","2","3"};
				foreach(string n in number)
					ooFont			= ooFont.Replace(n, "");
			}
			catch(Exception )
			{
				//unhandled
			}
			return ooFont;
		}
FontFamilies