Property VLCommonDisplay.TVLCommonImageDisplay.AutoClear
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: TVLCommonImageDisplay
Contents |
Syntax
Delphi:
property AutoClear : Boolean read FAutoClear write FAutoClear default False;
C++ Builder:
__property bool AutoClear = { read=FAutoClear, write=FAutoClear, default=False };
Summary
Auto clear the display at the end of the video.
Description
If set to true, the display will clear when the video stream
stops. Otherwise it will show the last frame after stopping.
Delphi example:
VLImageDisplay1.AutoClear := True;
C++ Builder example:
VLImageDisplay1->AutoClear = true;
Visual C++(MFC) example:
VLImageDisplay1.AutoClear = true;
C# Example:
imageDisplay1.AutoClear = true;