Click or drag to resize

McStreamInfo Interface

A class exposed by open McStream instances with properties and methods to get thumbnails and certain other extra information.

Namespace:  MediaCy.IQL.IO
Assembly:  MediaCy.IQL.IO (in MediaCy.IQL.IO.dll) Version: 10.0.6912.0
Syntax
VB
Public Interface McStreamInfo
Remarks
To access this custom interface, your project must reference the Media Cybernetics McStreamLib type library. In addition, the interface is only available if McStream.IsOpen is True.
Examples
VB
Sub GetMcStreamCapabilitites()
ThisApplication.ActiveImage.File.Open
Debug.Assert ThisApplication.ActiveImage.File.IsOpen
Dim myMcStreamInfo As McStreamInfo
Set myMcStreamInfo = ThisApplication.ActiveImage.File
Debug.Print Str(myMcStreamInfo.McStreamCapabilities)
Set myMcStreamInfo = Nothing
ThisApplication.ActiveImage.File.Close
End Sub
See Also