Property ALOggPlayer.TALOggPlayer.Streaming
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TALOggPlayer
Contents |
Syntax
Delphi:
property Streaming : Boolean read FStreaming write FStreaming;
C++ Builder:
__property bool Streaming = { read=FStreaming, write=FStreaming };
Summary
Configure for URL remote streaming.
Description
Use this property to specify weather or not the component is
intended to be used for URL remote streaming or playing a
file.
If you set the property to True, the component will configure itself for remote streaming from URL.
Otherwise it will configure for playing a local file.
Delphi example:
ALOggPlayer1.Streaming := True;
C++ Builder example:
ALOggPlayer1->Streaming = true;
Visual C++(MFC/Win32) example:
ALOggPlayer1.Streaming = true;
C# Example:
oggPlayer1.Streaming = true;