PDA

View Full Version : Solved: Left method



dhartford
06-13-2008, 12:50 AM
Left = 350 sets a Single that represents the distance in points from the left edge of the document. But if I only know the inchs I want the object to be from left of the document, how do I convert points to inch?

Thanks.

Cosmo
06-13-2008, 05:18 AM
72 points = 1 inch

dhartford
06-13-2008, 05:36 AM
Thanks for your help, Cosmo.

What about size a object to 50%? How do I convert 50% to height and width?

Very appreciate.

Cosmo
06-13-2008, 06:38 AM
object.Height = object.Height/2
object.Width= object.Width/2

or

object.Height = object.Height * .5
object.Width= object.Width * .5