It is used to copy an object or group of objects from one storage device to another. It is similar to the copy function used in PCs.

Namespace: Neodynamic.SDK.Printing
Assembly: Neodynamic.SDK.ThermalLabel (in Neodynamic.SDK.ThermalLabel.dll) Version: 5.0.3500.0 (5.0.3500.4)

Syntax

C#
public static void CopyObject(
	string srcObjectInfo,
	string destObjectInfo
)
Visual Basic
Public Shared Sub CopyObject ( _
	srcObjectInfo As String, _
	destObjectInfo As String _
)
Visual C++
public:
static void CopyObject(
	String^ srcObjectInfo, 
	String^ destObjectInfo
)

Parameters

srcObjectInfo
Type: System..::..String
The info of the stored object which will be copied. The info includes the printer's memory device where the object is stored as well as the object name and extension. The asterisk (*) character can be used as a wildcard allowing you to easily copy a selected group of objects.
destObjectInfo
Type: System..::..String
The info for the destination object. The info includes the printer's memory device where the object will be stored as well as the object name and extension. The asterisk (*) character can be used as a wildcard.

Remarks

- If the destination device does not have enough free space to store the object being copied, the task is canceled.

- Zebra files (Z:*.*) cannot be transferred. These files are copyrighted by Zebra Technologies.

See Also