4: | When the following code is executed, what is the x coordinate where the third column begins? float[] tStops = {50f, 60f, 200f, 40f}; StringFormat sf = new StringFormat(); sf.SetTabStops(0,tStops); string hdr = "Col1\tCol2\tCol3\tCol4"; g.DrawString(hdr, myFont, Brushes.Black, 10,10,sf); |