Property VLProbableLines.TVLProbableLines.MaxSegmentGap
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: TVLProbableLines
Contents |
Syntax
Delphi:
property MaxSegmentGap : Real read FMaxSegmentGap write SetMaxSegmentGap;
C++ Builder:
__property double MaxSegmentGap = { read=FMaxSegmentGap, write=SetMaxSegmentGap };
Summary
Maximum gap between line segments on the same line to treat as single line segment.
Description
Use this property to specify the maximum gap between line
segments lieing on the same line to treat them as the single
line segment (i.e. to join them).
Delphi example:
VLProbableLines1.MaxSegmentGap := 10;
C++ Builder example:
VLProbableLines1->MaxSegmentGap = 10;
Visual C++(MFC) example:
VLProbableLines1.MaxSegmentGap = 10;
C# Example:
probableLines1.MaxSegmentGap = 10;