Table of Contents

Class IFont

Namespace
nanoFramework.UI
Assembly
nanoFramework.Graphics.Core.dll

Base class for font implementation.

public abstract class IFont
Inheritance
IFont
Inherited Members
Extension Methods

Constructors

IFont()

protected IFont()

Properties

Height

Gets font height.

public virtual byte Height { get; }

Property Value

byte

this[char]

Get the binary representation of the ASCII character from the font table.

public abstract byte[] this[char character] { get; }

Parameters

character char

Character to look up.

Property Value

byte[]

Array of bytes representing the binary bit pattern of the character.

Width

Gets font width.

public virtual byte Width { get; }

Property Value

byte