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
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
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; }