Interface ISegmentString
An interface for classes which represent a sequence of contiguous line segments.
SegmentStrings can carry a context object, which is useful
for preserving topological or parentage information.
Assembly: NetTopologySuite.dll
Syntax
public interface ISegmentString
Properties
|
Edit this page
View Source
Context
Gets/Sets the user-defined data for this segment string.
Declaration
object Context { get; set; }
Property Value
|
Edit this page
View Source
Coordinates
Declaration
Coordinate[] Coordinates { get; }
Property Value
|
Edit this page
View Source
Count
Gets the number of Coordinate
s in this segment string.
Declaration
Property Value
|
Edit this page
View Source
IsClosed
States whether ISegmentString is closed
Declaration
Property Value
|
Edit this page
View Source
this[int]
Declaration
LineSegment this[int index] { get; set; }
Parameters
Type |
Name |
Description |
int |
index |
|
Property Value
Extension Methods