On this support document, it done like this:
NinjaTrader.Gui.Tools.SimpleFont myFont = new NinjaTrader.Gui.Tools.SimpleFont("Courier New", 12) { Size = 50, Bold = true };
Yet in some example scripts such as SampleChangeFont.cs it's done like this:
private SimpleFont largeFont;
largeFont = new Gui.Tools.SimpleFont("Arial", 12);
The latter example only defines 1 text size, and I guess not the WPF text size? I'm confused by the inclusion for 2 text sizes in the support document, even after reading the Microsoft page that's linked.

Comment