Previous Next


PictureWidth Property (RDKGraphDefaults Object)

Description

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

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