Property VLDSImageDisplay.TVLDSImageDisplay.FullScreen
From Mitov Wiki Doc
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: TVLDSImageDisplay
Contents |
Syntax
Delphi:
property FullScreen : Boolean read FFullScreen write SetFullScreen default False;
C++ Builder:
__property bool FullScreen = { read=FFullScreen, write=SetFullScreen, default=False };
Summary
Full Screen mode.
Description
Use this property to force the display to switch to Full
Screen mode.
Delphi example:
VLDSImageDisplay1.FullScreen := True;
C++ Builder example:
VLDSImageDisplay1->FullScreen = true;
Visual C++(MFC) example:
VLDSImageDisplay1.FullScreen = true;
Visual C++/CLI example:
dsVideoPlayer1->FullScreen = true;
C# example:
dsImageDisplay1.FullScreen = true;
VB example:
DSVideoPlayer1.FullScreen = True