Property VLCommonDisplay.TVLCommonDisplay.AutoSize
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: TVLCommonDisplay
Contents |
Syntax
Delphi:
property AutoSize : Boolean read FAutoSize write SetTheAutoSize default False;
C++ Builder:
__property bool AutoSize = { read=FAutoSize, write=SetTheAutoSize, default=False };
Summary
Auto-size to display to the video size.
Description
If set to True the display area will be resized to fit the
size of the frame image.
Delphi example:
VLImageDisplay1.AutoSize := True;
C++ Builder example:
VLImageDisplay1->AutoSize = true;
Visual C++(MFC) example:
VLImageDisplay1.AutoSize = true;
C# Example:
imageDisplay1.AutoSize = true;