Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
DestinationImage Property
See Also 
Leadtools.ImageProcessing Namespace > CopyDataCommand Class : DestinationImage Property



Gets or sets the destination image

Syntax

Visual Basic (Declaration) 
Public Property DestinationImage As RasterImage
Visual Basic (Usage)Copy Code
Dim instance As CopyDataCommand
Dim value As RasterImage
 
instance.DestinationImage = value
 
value = instance.DestinationImage
C# 
public RasterImage DestinationImage {get; set;}
C++/CLI 
public:
property RasterImage^ DestinationImage {
   RasterImage^ get();
   void set (RasterImage^ value);
}

Return Value

The destination RasterImage.

Example

For an example, refer to CopyDataCommand.

Remarks

The source image data (the image passed to the RasterCommand.Run method) will be copied into this image.

The destination image must accurately identify the copied data. Therefore, the following properties must specify the same values for both the source and destination images:

The CopyDataCommand works by copying the image data from the image passed to the RasterCommand.Run method to the image passed in the DestinationImage property.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also