Contents Previous Next


PictureHeight Property (BDKGraphDefaults Object)

Description

This property controls the height of the graph in twips (1/1440 inch). This setting is ignored if the Destination property is BDKExcel.

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 BDKApp.GraphDefaults
    .PictureHeight = picObject.Height
    .PictureWidth = picObject.Width
End With