Property VLWarp.TVLWarp.SmoothEdge
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 SmoothEdge : Boolean read FSmoothEdge write SetSmoothEdge default True;
C++ Builder:
__property bool SmoothEdge = { read=FSmoothEdge, write=SetSmoothEdge, default=True };
Summary
Smooths the edges.
Description
If set to True, the resulting image will appear with smooth
edges.
Delphi example:
VLWarp1.SmoothEdge := True;
C++ Builder example:
VLWarp1->SmoothEdge = true;
Visual C++(MFC) example:
VLWarp1.SmoothEdge = true;
Visual C++/CLI example:
warp1->SmoothEdge = true;
C# example:
warp1.SmoothEdge = true;
VB example:
Warp1.SmoothEdge = True