Designed to make passing image data between different Accusoft components easier, this method makes a copy of this object's image data and gives the new image data to another object which can be defined in a different Accusoft assembly. When finished, both this object and the destination object will contain separate copies of the same image data.
Syntax
'Declaration
Public Sub CopyTo( _
ByVal As Object _
)
'Usage
Dim instance As ScannedImage
Dim Destination As Object
instance.CopyTo(Destination)
public void CopyTo(
object
)
public: void CopyTo(
Object*
)
public:
void CopyTo(
Object^
)
Parameters
- Destination
- The destination object.
Exceptions
See Also