TrakHound_Dashboard.Controls.TabHeader.GetFormattedText C# (CSharp) 메소드

GetFormattedText() 개인적인 정적인 메소드

private static GetFormattedText ( string s ) : System.Windows.Media.FormattedText
s string
리턴 System.Windows.Media.FormattedText
        private static FormattedText GetFormattedText(string s)
        {
            return new FormattedText(
                        s,
                        CultureInfo.GetCultureInfo("en-us"),
                        FlowDirection.LeftToRight,
                        new Typeface("Arial"),
                        13,
                        Brushes.Black);
        }