Table of Contents

Class FontYamlFile

Namespace
ConsoleAppVisuals.Models
Assembly
ConsoleAppVisuals.dll

The FontYamlFile class defines the structure of a yaml file used to store the height of each character of a font.

public class FontYamlFile
Inheritance
FontYamlFile
Inherited Members

Remarks

For more information, consider visiting the documentation available here.

Constructors

FontYamlFile()

public FontYamlFile()

Properties

Author

The author of the font.

[YamlMember(Alias = "author", ApplyNamingConventions = false)]
public string? Author { get; set; }

Property Value

string

Chars

The height of the elements of the font.

public Dictionary<string, string>? Chars { get; set; }

Property Value

Dictionary<string, string>

Height

The height of each font element.

[YamlMember(Alias = "height", ApplyNamingConventions = false)]
public int? Height { get; set; }

Property Value

int?

Name

The name of the font.

[YamlMember(Alias = "name", ApplyNamingConventions = false)]
public string? Name { get; set; }

Property Value

string