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



The destination image for the copy.

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 image for the copy.

Example

For an example, refer to IRasterCommand.

Remarks

You need to put a valid RasterImage into this property prior of calling the IRasterCommand.Run method.

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

Requirements

Target Platforms: Microsoft .NET CF Framework 2.0, Windows Mobile 5 PocketPC, Windows Mobile 5 Smartphone, Windows Mobile 6

See Also