Internal_CreateFont() private method

private Internal_CreateFont ( [ _font, string name ) : void
_font [
name string
return void
Ejemplo n.º 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);
            }
        }
Ejemplo n.º 2
0
 public Font(string name)
 {
     Font.Internal_CreateFont(this, name);
 }
Ejemplo n.º 3
0
 public Font()
 {
     Font.Internal_CreateFont(this, null);
 }
Ejemplo n.º 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);
 }