Viscom Software VideoCap ActiveX Control

VideoFormats Collection

VideoFormats is a collection of VideoFormat objects. A VideoFormats collection  is used to obtain a list of available video format.

Example:   

This VB example show how to fill a combobox will all available video format:

Dim myVideoFormat As VideoFormat

For Each myVideoFormat In VideoCap1.VideoFormats
    cboVideoFormat.AddItem myVideoFormat.Name
Next