Are These Coordinates?

  • Thread starter Thread starter mtonkovich
  • Start date Start date
M

mtonkovich

I recorded the following macro and I have no idea what the following
numbers in () are. Could someone please help?

ActiveChart.ChartArea.Select
With ActiveChart.TextBoxes.Add (338, 207, 374, 16)

Perhaps the numbers define the coordinates of the text box?

Yes/no?

Thanks in advance.

Mike
 
The first two define the Left and Top coordinates in points. The third and
fourth define the Width and Height in points.

Regards,
Greg
 
Greg - Thank you for the help!

Mike
Greg said:
The first two define the Left and Top coordinates in points. The third and
fourth define the Width and Height in points.

Regards,
Greg
 
Back
Top