Class RadLineGeometry
Represents a line geometry.
Inherited Members
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class RadLineGeometry : RadGeometry, INotifyPropertyChanged
Constructors
RadLineGeometry()
Initializes a new instance of the line geometry.
Declaration
public RadLineGeometry()
RadLineGeometry(Point, Point)
Initializes a new instance of the line geometry.
Declaration
public RadLineGeometry(Point startPoint, Point endPoint)
Parameters
Microsoft.Maui.Graphics.Point
startPoint
Specifies the start point of the line geometry. |
Microsoft.Maui.Graphics.Point
endPoint
Specifies the end point of the line geometry. |
Properties
EndPoint
Gets or sets the end point of the line geometry.
Declaration
public Point EndPoint { get; set; }
Property Value
Microsoft.Maui.Graphics.Point
|
StartPoint
Gets or sets the start point of the line geometry.
Declaration
public Point StartPoint { get; set; }
Property Value
Microsoft.Maui.Graphics.Point
|