Property VLShear.TVLShear.YShear
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: TVLShear
Contents |
Syntax
Delphi:
property YShear : Integer read FYShear write SetYShear default 0;
C++ Builder:
__property int YShear = { read=FYShear, write=SetYShear, default=0 };
Summary
Y offset Shear.
Description
Use this property to specify the Y offset in pixels for image
Shear.
Delphi example:
VLShear1.YShear := 5;
C++ Builder example:
VLShear1->YShear = 5;
Visual C++(MFC) example:
VLShear1.YShear = 5;
Visual C++/CLI example:
shear1->YShear = 5;
C# example:
shear1.YShear = 5;
VB example:
Shear1.YShear = 5