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



Determines whether or not the source image is converted 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 convert the source image in place (no copy will be made). false, to leave the source image unchanged and place the result in the DestinationImage property.

Example

For an example, refer to ChangeViewPerspectiveCommand.

Requirements

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

See Also