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