Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
FontState.cs
1using SkiaSharp;
2
4{
8 public class FontState
9 {
10 private readonly SKPaint paint;
11 private readonly SKFont font;
12
18 public FontState(SKPaint Paint, SKFont Font)
19 {
20 this.paint = Paint;
21 this.font = Font;
22 }
23
27 public SKPaint Paint => this.paint;
28
32 public SKFont Font => this.font;
33 }
34}
Drawing state for text.
Definition: FontState.cs:9
FontState(SKPaint Paint, SKFont Font)
Drawing state for text.
Definition: FontState.cs:18