Click or drag to resize

IMcStreamClone Method

Copies properties from one McStream to another

Namespace:  MediaCy.IQL.IO
Assembly:  MediaCy.IQL.IO (in MediaCy.IQL.IO.dll) Version: 10.0.6912.0
Syntax
VB
Sub Clone ( 
	ByRef Destination As McStream
)

Parameters

Destination
Type: MediaCy.IQL.IOMcStream
Remarks
Pass in a new McStream object that you wish to be a duplicate of this McStream. If there is a Subclass to this McStream, the new Destination will have one created, and its specific properties cloned as well.
Examples
VB
Dim cloned as McStream
Images.File.Format = "tif"
Images.File.Compression = mcscJPEG
Images.File.Width = 200
Images.File.Clone cloned
' the following line will print 'tif'
Debug.Print cloned.Format
See Also