I have the code below and I want to increase text size of output e.VoltageRatio.ToString("E3")
and ("F3")
.
How do I do this?
void ratio_change(
object sender,
Phidget22.Events.VoltageRatioInputVoltageRatioChangeEventArgs e)
{
if (ratio.ChannelSubclass == ChannelSubclass.VoltageRatioInputBridge)
voltageTxt.Text = e.VoltageRatio.ToString("E3") + " V/V Test";
else
voltageTxt.Text = e.VoltageRatio.ToString("F3") + " V/V Test";
}