VintaSoft Barcode .NET SDK 15.2: Documentation for .NET developer
Vintasoft.Barcode.TextRendering Namespace / TextFontInfo Class / TextFontInfo Constructor(String,Single,Boolean,Boolean)
Syntax Requirements SeeAlso
In This Topic
    TextFontInfo Constructor(String,Single,Boolean,Boolean)
    In This Topic
    Initializes a new instance of the TextFontInfo class.
    Syntax
    'Declaration
    
    Public Function New( _
    ByVal name
    The face name of font.
    As String, _
    ByVal size
    The size of this font, measured in the points (1/72 inch).
    As Single, _
    ByVal isBold
    A value indicating whether font is bold.
    As Boolean, _
    ByVal isItalic
    A value indicating whether font is italic.
    As Boolean _
    )
    public TextFontInfo(
    string name,
    float size,
    bool isBold,
    bool isItalic
    )
    public: TextFontInfo(
    string* name,
    float size,
    bool isBold,
    bool isItalic
    )
    public:
    TextFontInfo(
    string^ name,
    float size,
    bool isBold,
    bool isItalic
    )

    Parameters

    name
    The face name of font.
    size
    The size of this font, measured in the points (1/72 inch).
    isBold
    A value indicating whether font is bold.
    isItalic
    A value indicating whether font is italic.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also