Viscom Software Screen2Video ActiveX Control

CaptureWidth Property

Description:   

Get/Set the width of capture area. By default value is width of the physical screen. Normally you do not need set this property, unless you want to decrease the output file size.

Usage:   

Screen2Video1.CaptureWidth[= value]

Data Type:   

Integer

Example:   

This Visual Basic example capture region of screen:

Private Sub Capture_Click()      
        Screen2Video1.CaptureAudio=True
        Screen2Video1.FileName="c:\test.avi"
        Screen2Video.CaptureWidth=800
        Screen2Video.CaptureHeight=600  
        Screen2Video1.Start

End Sub