Movie Player SDK Gold ActiveX Control ReferenceMethods ChapterReadChapterName Movie Player ActiveX Control ChapterReadChapterName Return the chapter name for specific index. Public Function ChapterReadChapterName( _ ByVal index As Integer ) As String ParameterindexSpecifies index of chapter. First index is zero.Return ValueReturn the chapter name.Example Visual Basic SyntaxMoviePlayer1.ChapterOpenFile "c:\yourfolder\yourfile.mp4"iCount = Me.MoviePlayer1.ChapterReadChapterCountFor i = 0 To iCount - 1 List1.AddItem MoviePlayer1.ChapterReadChapterName(i) + " " + Str (MoviePlayer1.ChapterReadChapterTime(i))NextMoviePlayer1.ChapterCloseFile