IFont Interface

Definition

A font contains one list of bytes per character which can be written to the matrix to represent the character.

public interface IFont
type IFont = interface
Public Interface IFont
Derived

Examples

This example shows how the 'A' char could by encoded:

var aBytes = new byte[] {
    0b1111100,
    0b1111110,
    0b0010011,
    0b0010011,
    0b1111110,
    0b1111100,
    0b0000000,
    0b0000000
};

Remarks

Each character consists of a list of bytes where a single byte represents a column of the display.

Properties

Item[Char]

Returns a list of bytes for a given character to be written to a matrix.

Applies to