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
|
Improve this Doc
View Source
Context
Gets/Sets the user-defined data for this segment string.
Declaration
object Context { get; set; }
Property Value
|
Improve this Doc
View Source
Coordinates
Points that make up ISegmentString
Declaration
Coordinate[] Coordinates { get; }
Property Value
|
Improve this Doc
View Source
Count
Size of Coordinate Sequence
Declaration
Property Value
|
Improve this Doc
View Source
IsClosed
States whether ISegmentString is closed
Declaration
Property Value
|
Improve this Doc
View Source
Item[Int32]
Declaration
LineSegment this[int index] { get; set; }
Parameters
Type |
Name |
Description |
Int32 |
index |
|
Property Value