Internal_CreateFont() private method

private Internal_CreateFont ( [ _font, string name ) : void
_font [
name string
return void
コード例 #1
0
        public Font(string name)
        {
            bool flag  = Path.GetDirectoryName(name) == string.Empty;
            bool flag2 = flag;

            if (flag2)
            {
                Font.Internal_CreateFont(this, name);
            }
            else
            {
                Font.Internal_CreateFontFromPath(this, name);
            }
        }
コード例 #2
0
ファイル: Font.cs プロジェクト: msruzy/digimon-linkz-client
 public Font(string name)
 {
     Font.Internal_CreateFont(this, name);
 }
コード例 #3
0
ファイル: Font.cs プロジェクト: msruzy/digimon-linkz-client
 public Font()
 {
     Font.Internal_CreateFont(this, null);
 }
コード例 #4
0
 /// <summary>
 ///   <para>Create a new Font.</para>
 /// </summary>
 /// <param name="name">The name of the created Font object.</param>
 public Font()
 {
     Font.Internal_CreateFont(this, (string)null);
 }