Hi Dears,
I am trying to draw a 3d box (shape type 14) with VBA, but I cannot find the required parameter to define its depth. The width and height parameters are very clear, but I am unable to change the default depth of this shape.
The command used to draw the box is;
DIM MyShaep as Shapes
Set MyShape = ActiveSheet.Shapes.AddShape(
It might be very simple, but any help is highly appreciated.
Regards,
Masood.
I am trying to draw a 3d box (shape type 14) with VBA, but I cannot find the required parameter to define its depth. The width and height parameters are very clear, but I am unable to change the default depth of this shape.
The command used to draw the box is;
DIM MyShaep as Shapes
Set MyShape = ActiveSheet.Shapes.AddShape(
Type:= 14, _
Left:= 20, Top:= 50, _
Width:=60, Height:=60)
It might be very simple, but any help is highly appreciated.
Regards,
Masood.