Description
This property controls the height of the graph in twips (1/1440 inch). This setting is ignored if the Destination property is RDKExcel.
Syntax
object.PictureHeight
Arguments
None.
Return Value
(Double) – the height of the image in twips.
Example
'Set the graph size to the same size as the destination picture object
With RDKApp.GraphDefaults
.PictureHeight = picObject.Height
.PictureWidth = picObject.Width
End With