New to Telerik UI for .NET MAUIStart a free 30-day trial

RadPath

Class

Represents a simple path defined by its Geometry.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class RadPath : RadLayout

Inheritance: objectRadLayoutRadPath

Inherited Members RadLayout.CreateLayoutManager()

Constructors

Initializes a new instance of the path.

C#
public RadPath()

Fields

FillProperty

BindableProperty

Identifies the Fill property.

C#
public static readonly BindableProperty FillProperty

GeometryProperty

BindableProperty

Identifies the Geometry property.

C#
public static readonly BindableProperty GeometryProperty

StrokeProperty

BindableProperty

Identifies the Stroke property.

C#
public static readonly BindableProperty StrokeProperty

StrokeThicknessProperty

BindableProperty

Identifies the StrokeThickness property.

C#
public static readonly BindableProperty StrokeThicknessProperty

Properties

Gets or sets the fill of the path.

C#
[TypeConverter(typeof(RadBrushTypeConverter))]
public RadBrush Fill { get; set; }

Gets or sets the path geometry.

C#
[TypeConverter(typeof(GeometryTypeConverter))]
public RadPathGeometry Geometry { get; set; }

Gets or sets the stroke of the path.

C#
[TypeConverter(typeof(RadBrushTypeConverter))]
public RadBrush Stroke { get; set; }

Gets or sets the stroke thickness.

C#
public double StrokeThickness { get; set; }