M
Mieds
What does the value in point represent in VBA? For example, in the
following code, what does the .Top = 200 mean. Is there a conversion
from points to inches.
Thanks
objPPTSlide.Shapes.PasteSpecial(ppPasteEnhancedMetafile).Name =
"GraphOne"
With objPPTSlide.Shapes("GraphOne")
.ScaleHeight 0.6, msoTrue,
msoScaleFromMiddle
.ScaleWidth 0.6, msoTrue,
msoScaleFromMiddle
.Top = 200
.Left = 50
End With
following code, what does the .Top = 200 mean. Is there a conversion
from points to inches.
Thanks
objPPTSlide.Shapes.PasteSpecial(ppPasteEnhancedMetafile).Name =
"GraphOne"
With objPPTSlide.Shapes("GraphOne")
.ScaleHeight 0.6, msoTrue,
msoScaleFromMiddle
.ScaleWidth 0.6, msoTrue,
msoScaleFromMiddle
.Top = 200
.Left = 50
End With