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