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