Viscom Software Screen2Video ActiveX Control

CaptureHeight Property

Description:   

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

Usage:   

Screen2Video1.CaptureHeight[= 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"
        Screen2Video1.CaptureLeft=0
        Screen2Video1.CaptureTop=0
        Screen2Video.CaptureWidth=800
        Screen2Video.CaptureHeight=600  
        Screen2Video1.Start

End Sub