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



Determines whether or not the source image is changed in place (or a new image is created).

Syntax

Visual Basic (Declaration) 
Public Property InPlace As Boolean
Visual Basic (Usage)Copy Code
Dim instance As ChangeViewPerspectiveCommand
Dim value As Boolean
 
instance.InPlace = value
 
value = instance.InPlace
C# 
public bool InPlace {get; set;}
C++/CLI 
public:
property bool InPlace {
   bool get();
   void set (bool value);
}

Return Value

true to run this command on the source image in place (no copy is made) and thus, DestinationImage will not be used.

false to not alter the source image instead create a new image and hold it in the DestinationImage

Example

For an example, refer to ChangeViewPerspectiveCommand.

Requirements

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

See Also