1 write to Geopath
Microsoft.Maui.Controls.Maps (1)
Polyline.cs (1)
24
Geopath
= observable;
17 references to Geopath
Microsoft.Maui.Controls.Maps (17)
HandlerImpl\Polyline.Impl.cs (16)
21
get { return
Geopath
[index]; }
32
public int Count =>
Geopath
.Count;
46
var index =
Geopath
.Count;
47
Geopath
.Add(item);
56
for (int i =
Geopath
.Count - 1; i >= 0; i--)
69
return
Geopath
.Contains(item);
79
Geopath
.CopyTo(array, arrayIndex);
88
return
Geopath
.GetEnumerator();
98
return
Geopath
.IndexOf(item);
108
Geopath
.Insert(index, item);
120
var index =
Geopath
.IndexOf(item);
121
var result =
Geopath
.Remove(item);
132
var item =
Geopath
[index];
133
Geopath
.RemoveAt(index);
139
return
Geopath
.GetEnumerator();
144
Handler?.UpdateValue(nameof(
Geopath
));
Polyline.cs (1)
23
observable.CollectionChanged += (sender, args) => OnPropertyChanged(nameof(
Geopath
));