Property VLWarp.TVLWarp.InverseTransform
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: TVLWarp
Contents |
Syntax
Delphi:
property InverseTransform : Boolean read FInverseTransform write SetInverseTransform default False;
C++ Builder:
__property bool InverseTransform = { read=FInverseTransform, write=SetInverseTransform, default=False };
Summary
Perform inverse Warp.
Description
If set to False the component will perform forward Warp
operation.
If set to True the component will perform inverse Warp operation.
Delphi example:
VLWarp1.InverseTransform := True;
C++ Builder example:
VLWarp1->InverseTransform = true;
Visual C++(MFC) example:
VLWarp1.InverseTransform = true;
Visual C++/CLI example:
warp1->InverseTransform = true;
C# example:
warp1.InverseTransform = true;
VB example:
Warp1.InverseTransform = True