Table of Contents

Class IFont

Namespace
Iot.Device.Ssd13xx
Assembly
Iot.Device.Ssd13xx.dll

Base class for font implementation.

public abstract class IFont
Inheritance
IFont

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