'Declaration Public Overloads MustOverride Function CreateSystemFont( _
ByVal fontNameThe name of the font.As System.String, _
ByVal sizeThe size of the font measured in the world space units (1/96 inch).As Single, _
ByVal isBoldA value indicating whether font is bold.As Boolean, _
ByVal isItalicA value indicating whether font is italic.As Boolean, _
ByVal useFallbackFontA value indicating whether font with fallback must be created.As Boolean _
) As IDrawingFont
public abstract IDrawingFont CreateSystemFont(
System.String fontName,
float size,
bool isBold,
bool isItalic,
bool useFallbackFont
)
public: abstract IDrawingFont* CreateSystemFont(
System.String fontName,
float size,
bool isBold,
bool isItalic,
bool useFallbackFont
)
public:
abstract IDrawingFont^ CreateSystemFont(
System.String fontName,
float size,
bool isBold,
bool isItalic,
bool useFallbackFont
)
Parameters
- fontName
- The name of the font.
- size
- The size of the font measured in the world space units (1/96 inch).
- isBold
- A value indicating whether font is bold.
- isItalic
- A value indicating whether font is italic.
- useFallbackFont
- A value indicating whether font with fallback must be created.
Return Value
The font.