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 |
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
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