Viscom Software Screen2Video ActiveX Control

UseVideoCompressor Property

Description:   

Enable or disable video compressor when output to avi file.

Usage:   

Screen2Video1.UseVideoCompressor[= value]

Data Type:   

Boolean

Example:   

This Visual Basic example output to avi without compressor.

Private Sub Capture_Click()      
        Screen2Video1.OutputType=0
        Screen2Video1.UseAudioCompressor=False
        Screen2Video1.UseVideoCompressor=False
        Screen2Video1.FileName="c:\test.avi"
        Screen2Video1.Start

End Sub