G
Gustaf
Hi all,
I'm making a VBA program to generate a PowerPoint slide. On the slide I'm using hexagon shapes of different width. I want the sides of the hexagon to be shaped identically, regardless of the width of the hexagon. That is, the top and bottom sides change, while the other sides are absolute. This is not the case by default, but I found the Adjustment property which does the same work as the yellow diamond you use to adjust the shapes. Assuming I create my shape like below, what value would I use for Adjustments that will make the sides look the same regardless of width?
Set pptShp = pptSld.Shapes.AddShape(msoShapeHexagon, dStartX, dStartY, dEndX - dStartX, 14)
pptShp.Adjustments(1) = ?
Many thanks,
Gustaf
I'm making a VBA program to generate a PowerPoint slide. On the slide I'm using hexagon shapes of different width. I want the sides of the hexagon to be shaped identically, regardless of the width of the hexagon. That is, the top and bottom sides change, while the other sides are absolute. This is not the case by default, but I found the Adjustment property which does the same work as the yellow diamond you use to adjust the shapes. Assuming I create my shape like below, what value would I use for Adjustments that will make the sides look the same regardless of width?
Set pptShp = pptSld.Shapes.AddShape(msoShapeHexagon, dStartX, dStartY, dEndX - dStartX, 14)
pptShp.Adjustments(1) = ?
Many thanks,
Gustaf