Viscom Software VideoCap ActiveX Control

ShowText Method

Description:   

Enables/disables show the text.
 

Usage:   

VideoCap1.ShowText iIndex, bShow

iIndex - the index of text. First index is zero, up to 60 index. You can control 60 texts in same time.
(Data Type: Integer)

bShow
True - enable show the text
False - disable show the text.

Return Value:   

No Return value.

Example:   

This Visual Basic example invisible the text:

Private Sub Form_Load()
       VideoCap1.CaptureVideo=TRUE
        VideoCap1.ShowPreview=FALSE
        VideoCap1.CaptureFileName="c:\test.avi"
        VideoCap1.CaptureMode=TRUE
        VideoCap1.Start
        VideoCap1.ShowText 0,FALSE
End Sub