Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.3.5
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;}
Managed Extensions for C++ 
public: __property bool get_InPlace();
public: __property void set_InPlace( 
   bool value
);
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 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also