DXFReaderNETControlHighlightNotContinuous Property
|
Gets or sets whether unconnected or discontinuous points in polylines and paths are visually highlighted.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.12.2
Syntaxpublic bool HighlightNotContinuous { get; set; }Public Property HighlightNotContinuous As Boolean
Get
Set
public:
property bool HighlightNotContinuous {
bool get ();
void set (bool value);
}member HighlightNotContinuous : bool with get, set
PROPERTY HighlightNotContinuous AS LOGIC GET SET
Property Value
Type:
Booleantrue to highlight unconnected points; otherwise,
false.
Remarks
When enabled, this property highlights points in continuous entities (such as polylines, paths, and splines)
that are not properly connected to adjacent segments. This is useful for:
- Quality control and validation of imported or converted drawings
- Identifying gaps or breaks in what should be continuous paths
- Debugging entity construction issues
Highlighted unconnected points are displayed using the color specified by the
UnconnectedPointsColor property.
See Also