VideoEdit Gold ActiveX Control

SRTMakerSave Method

Description

Create subtitle text file (srt file). Before called this method, you should call SRTMakerAddSubTitle method first.

Syntax

Public Function SRTMakerSave(
   ByVal strSRTFile as String
}

Parameter
strSRTFile
    The path of subtitle file.

No Return Value
 

Example

Visual Basic Syntax
AxVideoEdit1.SRTMakerClear()
AxVideoEdit1.SRTMakerAddSubTitle(0, 10, "This is subtitle 1")
AxVideoEdit1.SRTMakerAddSubTitle(11, 20, "This is subtitle 2")
AxVideoEdit1.SRTMakerAddSubTitle(21, 30, "This is subtitle 3")
AxVideoEdit1.SRTMakerSave("c:\test1.srt")