Skip to main content

Class Font8x16

Represents a 8x16 bitmap font

Assembly: MicroGraphics.dll
View Source
Declaration
public class Font8x16 : IFont

Implements:
Meadow.Foundation.Graphics.IFont

Properties

Width

Width of a character in the font.

View Source
Declaration
public int Width { get; }

Height

Height of a character in the font.

View Source
Declaration
public int Height { get; }

this[char]

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

View Source
Declaration
public byte[] this[char character] { get; }

Implements