Table of Contents

Interface IFont

Namespace
SimulationFramework.Drawing
Assembly
SimulationFramework.dll

Represents a font. Fonts can be loaded using LoadFont(string).

public interface IFont : IDisposable
Inherited Members

Properties

Name

The family name of the font.

string Name { get; }

Property Value

string

SupportsBold

Whether this font can be rendered using Bold. If this value is false, the Bold value has no effect when rendering text using this font.

bool SupportsBold { get; }

Property Value

bool

SupportsItalic

Whether this font can be rendered using Italic. If this value is false, the Italic value has no effect when rendering text using this font.

bool SupportsItalic { get; }

Property Value

bool