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 > ResizeCommand Class : DestinationImage Property



Specifies the destination image to resize to.

Syntax

Visual Basic (Declaration) 
Public Property DestinationImage As RasterImage
Visual Basic (Usage)Copy Code
Dim instance As ResizeCommand
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 image to resize to.

Example

For an example, refer to ResizeCommand.

Remarks

You must set a valid RasterImage in this property prior to calling the IRasterCommand.Run method. The image passed to IRasterCommand.Run will be resized into the image you put into this property.

Requirements

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

See Also