Class Polyline
Definition
- Assembly:
- Tizen.Maps.dll
The polyline map object.
C#Copypublic class Polyline : MapObject, IDisposable
- Inheritance
- Implements
-
System.IDisposable
Constructors
Declaration
C#Copypublic Polyline(List<Geocoordinates> coordinates, Color color, int width)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.List<T><Geocoordinates> | coordinates | List of geographical coordinates. |
Color | color | Line color. |
int | width | The width of line [1 ~ 100] (pixels). |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Thrown when input values are invalid. |
Properties
Declaration
C#Copypublic IEnumerable<Geocoordinates> Coordinates { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T><Geocoordinates> |
Declaration
C#Copypublic override bool IsVisible { get; set; }
Property Value
Type | Description |
---|---|
bool |
Overrides
Declaration
C#Copypublic Color LineColor { get; set; }
Property Value
Type | Description |
---|---|
Color |
Declaration
C#Copypublic int Width { get; set; }
Property Value
Type | Description |
---|---|
int |
Methods
Declaration
C#Copypublic void Dispose()
View Source
Dispose(bool)
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Declaration
C#Copyprotected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
bool | disposing | If true, managed and unmanaged resources can be disposed, otherwise only unmanaged resources can be disposed. |
Declaration
C#Copyprotected ~Polyline()
Events
Declaration
C#Copypublic event EventHandler Clicked
Event Type
Type | Description |
---|---|
System.EventHandler |
Implements
System.IDisposable