RadPathDefinition
Class
Represents a simple path definition defined by its Geometry.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public class RadPathDefinition : BindableObject
Inheritance: objectRadPathDefinition
Constructors
Initializes a new instance of the path definition.
C#
public RadPathDefinition()
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 definition.
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 definition.
C#
[TypeConverter(typeof(RadBrushTypeConverter))]
public RadBrush Stroke { get; set; }
Gets or sets the stroke thickness.
C#
public double StrokeThickness { get; set; }