This documentation is for the old version. Go to the latest Graphics Mill docs

StreamWrapper Constructor

Creates new instance of the StreamWrapper and initializes it by the Stream object.

Namespace: Aurigma.GraphicsMill
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Sub New ( _
	stream As Stream _
)
C#
public StreamWrapper(
	Stream stream
)

Parameters

stream

Type: System.IO.Stream

The Stream object which you need to wrap.

Remarks

Create this class whenever you need to pass .NET Stream class instance to some method of a COM object which accepts IStream interface.

See Also

Reference