ComponentOne CalendarView for WinForms
C1.Framework.Drawing.Gdi Namespace / FontBuilder Class / FontBuilder Constructor / FontBuilder Constructor(String,FontFamily,Int32)
A null-terminated string that specifies the typeface name of the font. The length of this string must not exceed 32 characters, including the terminating null character. The EnumFontFamiliesEx function can be used to enumerate the typeface names of all currently available fonts. If faceName is an empty string, GDI uses the first font that matches the other specified attributes.
Specifies the family of the font
Specifies the height, in logical units, of the font's character cell or character. The character height value (also known as the em height) is the character cell height value minus the internal-leading value.

In This Topic
    FontBuilder Constructor(String,FontFamily,Int32)
    In This Topic
    Initialize a new FontBuilder by special faceName, family and height
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal faceName As String, _
       ByVal family As FontFamily, _
       ByVal height As Integer _
    )
    public FontBuilder( 
       string faceName,
       FontFamily family,
       int height
    )

    Parameters

    faceName
    A null-terminated string that specifies the typeface name of the font. The length of this string must not exceed 32 characters, including the terminating null character. The EnumFontFamiliesEx function can be used to enumerate the typeface names of all currently available fonts. If faceName is an empty string, GDI uses the first font that matches the other specified attributes.
    family
    Specifies the family of the font
    height
    Specifies the height, in logical units, of the font's character cell or character. The character height value (also known as the em height) is the character cell height value minus the internal-leading value.
    See Also