Printer.FontCount Property

 

Returns the number of fonts available for the current display device or active printer.

Namespace:   Microsoft.VisualBasic.PowerPacks.Printing.Compatibility.VB6
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)

Syntax

public short FontCount { get; }
public:
property short FontCount {
    short get();
}
member FontCount : int16 with get
Public ReadOnly Property FontCount As Short

Property Value

Type: System.Int16

Returns a Short.

Remarks

The FontCount property is equivalent to the Length property of Families in the .NET Framework.

Note

Visual Basic supports only TrueType fonts; the value returned by FontCount may be different than the value returned in Visual Basic 6.0.

Note

Functions and objects in the Microsoft.VisualBasic.PowerPacks.Printing.Compatibility.VB6 namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic. In most cases, these functions and objects duplicate functionality that you can find in other namespaces in the .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.

Examples

The following example demonstrates how to retrieve the FontCount property value.

Dim Printer As New Printer
MsgBox(CStr(Printer.FontCount) & " fonts are available.")

See Also

Printer Class
Microsoft.VisualBasic.PowerPacks.Printing.Compatibility.VB6 Namespace

bc1bcb98-e13b-4c68-a514-045c042dbf364e434922-3709-49c6-a69d-38120ed72d7a7f9351ea-cb3e-4615-8f70-5a29c165c1a7

Return to top