1 write to StartPoint
Microsoft.Maui.Controls (1)
Shapes\LineGeometry.cs (1)
19 StartPoint = startPoint;
7 references to StartPoint
Microsoft.Maui.Controls (5)
Shapes\GeometryHelper.cs (1)
44 figDst.StartPoint = matx.Transform(lineGeoSrc.StartPoint);
Shapes\LineGeometry.cs (4)
23 /// <summary>Bindable property for <see cref="StartPoint"/>.</summary> 25 BindableProperty.Create(nameof(StartPoint), typeof(Point), typeof(LineGeometry), new Point()); 47 float startPointX = (float)StartPoint.X; 48 float startPointY = (float)StartPoint.Y;
Microsoft.Maui.Controls.Compatibility (2)
Tizen\Extensions\GeometryExtensions.cs (2)
28 Forms.ConvertToScaledPixel(lineGeometry.StartPoint.X), 29 Forms.ConvertToScaledPixel(lineGeometry.StartPoint.Y));