Previous Next


DestinationFile Property (RDKGraphDefaults Object)

Description

If the Destination property is set to RDKBMPFile, RDKWMFFile, RDKJPGFile, 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 RDKApp.GraphDefaults
    .Destination = RDKBMPFile
    .DestinationFile = "C:\MyPicture.BMP"
End With
RDKApp.Outputs(1).Results.Graph RDKCurveTypeDensity