Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
CloneAll Method
See Also 
Leadtools Namespace > RasterImage Class : CloneAll Method



Creates an exact copy of this RasterImage.

Syntax

Visual Basic (Declaration) 
Public Function CloneAll() As RasterImage
Visual Basic (Usage)Copy Code
Dim instance As RasterImage
Dim value As RasterImage
 
value = instance.CloneAll()
C# 
public RasterImage CloneAll()
C++/CLI 
public:
RasterImage^ CloneAll(); 

Return Value

The RasterImage this method creates.

Example

For an example, refer to Clone

Remarks

You can also use the _ctor constructor to create an exact copy of an existing RasterImage.

To create a copy of an object while maintaining a progress status, refer to the CloneCommand.

This method copies all the pages and any metadata contained in the RasterImage. To create a copy of only the current active page (no metadata information), use the Clone method.

To clone an image with support for a progress event, refer to CloneCommand.

Requirements

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

See Also