Property VLWarp.TVLWarp.WarpType
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 WarpType : TVLWarpType read FWarpType write SetWarpType default wtBilinear;
C++ Builder:
__property TVLWarpType WarpType = { read=FWarpType, write=SetWarpType, default=wtBilinear };
Summary
Warp Type - Bilinear or Perspective.
Description
Specifies the Warp Type for the TVLWarp component - Bilinear
or Perspective.
Delphi example:
VLWarp1.WarpType := wtPerspective;
C++ Builder example:
VLWarp1->WarpType = wtPerspective;
Visual C++(MFC) example:
VLWarp1.WarpType = wtPerspective;
Visual C++/CLI example:
warp1->WarpType = Mitov::VideoLab::WarpType::Perspective;
C# example:
warp1.WarpType = Mitov.VideoLab.WarpType.Perspective;
VB example:
Warp1.WarpType = Mitov.VideoLab.WarpType.Perspective