Image Area PolygonCoordinates Property
This is overridden to get or set the coordinate values in string form
Definition
Namespace: EWSoftware.ImageMaps.Windows.Forms
Assembly: EWSoftware.ImageMaps.Windows.Forms (in EWSoftware.ImageMaps.Windows.Forms.dll) Version: 2024.12.31.0
Assembly: EWSoftware.ImageMaps.Windows.Forms (in EWSoftware.ImageMaps.Windows.Forms.dll) Version: 2024.12.31.0
C#
public override string Coordinates { get; set; }VB
Public Overrides Property Coordinates As String
Get
SetC++
public:
virtual property String^ Coordinates {
String^ get () override;
void set (String^ value) override;
}F#
abstract Coordinates : string with get, set
override Coordinates : string with get, setProperty Value
StringImplements
IImageAreaCoordinatesRemarks
The coordinates are expected to be numeric and in X,Y pairs with each value separated by
commas. There must be at least three pairs of coordinates to form the polygon.
Exceptions
| ArgumentException | This is thrown if the number of coordinates given is not exactly a multiple of two, there are less than three pairs of coordinates, or if non-numeric values are found. |