Skip to content

libvlc.ListPlayer.Play

Andrew Lambert edited this page Nov 26, 2022 · 3 revisions

Method signatures

 Sub Play()
 Sub Play(Index As Integer)
 Sub Play(Media As libvlc.Medium)
 Function Play(Index As Integer = -1, StartPaused As Boolean = False) As Boolean

Remarks

Begins or resumes playback. Pass the index of a medium in the PlayList to begin playing at that index. Pass a Medium which is already in the PlayList to begin playing at the medium's index.

Function Play(Integer, Boolean) As Boolean

If StartPaused=True then the current medium is loaded and then put into the "paused" state. Returns True if the medium was loaded/started(/paused) successfully.

Clone this wiki locally