Property VLShear.TVLShear.SmoothEdge
From Mitov Wiki Doc
				
				
				(Difference between revisions)
				
																
				
				
								
				
Latest revision as of 00:21, 22 November 2011
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 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:
VLShear1.SmoothEdge := True;
C++ Builder example:
VLShear1->SmoothEdge = true;
Visual C++(MFC) example:
VLShear1.SmoothEdge = true;
Visual C++/CLI example:
shear1->SmoothEdge = true;
C# example:
shear1.SmoothEdge = true;
VB example:
Shear1.SmoothEdge = True
