I have modified an indicator that has the following property
NinjaTrader.Gui.Tools.SimpleFont myFont = new NinjaTrader.Gui.Tools.SimpleFont("Segoe UI", 24) { Size = 30, Bold = true }; /// Sets myFont
FS = Font Size = 30
But when I substitute (FS) for the 30 in the above statement like this
NinjaTrader.Gui.Tools.SimpleFont myFont = new NinjaTrader.Gui.Tools.SimpleFont("Segoe UI", 24) { Size = (FS), Bold = true }; /// Sets myFont
Ay help would be appreciated
John

Comment