Property VLCommonDisplay.TVLCommonDisplay.Stretch
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 Stretch : Boolean read FStretch write SetTheStretch default False;
C++ Builder:
__property bool Stretch = { read=FStretch, write=SetTheStretch, default=False };
Summary
Stretch the image to the display size.
Description
If set to True the image will be stretched to fit the size of
the display area.
Delphi example:
VLImageDisplay1.Stretch := True;
C++ Builder example:
VLImageDisplay1->Stretch = true;
Visual C++(MFC) example:
VLImageDisplay1.Stretch = true;
C# Example:
imageDisplay1.Stretch = true;