Contents Previous Next


DestinationFile Property (BDKGraphDefaults Object)

Description

If the Destination property is set to BDKBMPFile, BDKWMFFile, BDKJPGFile, this property specifies the full path and file name of the file that is written. Note, the file extension must match the type of file being generated. For example, if you are generating a BMP file, the DestinationFile must end in ".BMP."

Syntax

object.DestinationFile

Arguments

None.

Return Value

(String) – the name of the destination file.

Example

'Create a .BMP file:
With BDKApp.GraphDefaults
    .Destination = BDKBMPFile
    .DestinationFile = "C:\MyPicture.BMP"
End With
BDKApp.Outputs(1).Results.Graph BDKCurveTypeDensity