Skip to main content

LineGeometry Class

Definition

Namespace:Avalonia.Media
Assembly:Avalonia.Base
Package:Avalonia

Represents the geometry of a line.

public class LineGeometry

Inheritance: object -> AvaloniaObject -> Geometry -> LineGeometry

Constructors

NameDescription
LineGeometry (2 overloads)Initializes a new instance of the Avalonia.Media.LineGeometry class.

LineGeometry overloads

LineGeometry Constructor

Initializes a new instance of the Avalonia.Media.LineGeometry class.

public LineGeometry()

LineGeometry Constructor

Initializes a new instance of the Avalonia.Media.LineGeometry class.

public LineGeometry(Avalonia.Point startPoint, Avalonia.Point endPoint)
Parameters

startPoint Avalonia.Point

The start point.

endPoint Avalonia.Point

The end point.

Methods

NameDescription
Bind (8 overloads)Binds a Avalonia.AvaloniaProperty to an Avalonia.Data.BindingBase. Inherited from AvaloniaObject.
CheckAccessReturns a value indicating whether the current thread is the UI thread. Inherited from AvaloniaObject.
ClearValue (4 overloads)Clears a Avalonia.AvaloniaProperty's local value. Inherited from AvaloniaObject.
CloneClones the geometry.
CoerceValueCoerces the specified Avalonia.AvaloniaProperty. Inherited from AvaloniaObject.
CombineCombines the two geometries using the specified Avalonia.Media.GeometryCombineMode and applies the specified transform to the resulting geometry. Inherited from Geometry.
EqualsCompares two objects using reference equality. Inherited from AvaloniaObject.
FillContainsIndicates whether the geometry's fill contains the specified point. Inherited from Geometry.
GetBaseValueInherited from AvaloniaObject.
GetHashCodeGets the hash code for the object. Inherited from AvaloniaObject.
GetRenderBoundsGets the geometry's bounding rectangle with the specified pen. Inherited from Geometry.
GetValue (3 overloads)Gets a Avalonia.AvaloniaProperty value. Inherited from AvaloniaObject.
GetWidenedGeometryGets a Avalonia.Media.Geometry that is the shape defined by the stroke on the Geometry produced by the specified Pen. Inherited from Geometry.
IsAnimatingChecks whether a Avalonia.AvaloniaProperty is animating. Inherited from AvaloniaObject.
IsSetChecks whether a Avalonia.AvaloniaProperty is set on this object. Inherited from AvaloniaObject.
ParseCreates a Avalonia.Media.Geometry from a string. Inherited from Geometry.
SetCurrentValue (2 overloads)Sets the value of a dependency property without changing its value source. Inherited from AvaloniaObject.
SetValue (3 overloads)Sets a Avalonia.AvaloniaProperty value. Inherited from AvaloniaObject.
StrokeContainsIndicates whether the geometry's stroke contains the specified point. Inherited from Geometry.
TryGetPointAndTangentAtDistanceInherited from Geometry.
TryGetPointAtDistanceInherited from Geometry.
TryGetSegmentInherited from Geometry.
VerifyAccessChecks that the current thread is the UI thread and throws if not. Inherited from AvaloniaObject.

Clone Method

Clones the geometry.

public Avalonia.Media.Geometry Clone()

Returns

Avalonia.Media.Geometry

A cloned geometry.

Properties

NameDescription
BoundsGets the geometry's bounding rectangle. Inherited from Geometry.
ContourLengthGets the geometry's total length as if all its contours are placed in a straight line. Inherited from Geometry.
DispatcherReturns the Avalonia.AvaloniaObject.Dispatcher that this Avalonia.AvaloniaObject is associated with. Inherited from AvaloniaObject.
EndPointGets or sets the end point of the line.
ItemInherited from AvaloniaObject.
StartPointGets or sets the start point of the line.
TransformGets or sets a transform to apply to the geometry. Inherited from Geometry.

EndPoint Property

Gets or sets the end point of the line.

public Avalonia.Point EndPoint { get; set; }

StartPoint Property

Gets or sets the start point of the line.

public Avalonia.Point StartPoint { get; set; }

Fields

EndPointProperty Field

Defines the Avalonia.Media.LineGeometry.EndPoint property.

public Avalonia.StyledProperty<TValue><Avalonia.Point> EndPointProperty

StartPointProperty Field

Defines the Avalonia.Media.LineGeometry.StartPoint property.

public Avalonia.StyledProperty<TValue><Avalonia.Point> StartPointProperty

Events

NameDescription
ChangedRaised when the geometry changes. Inherited from Geometry.
PropertyChangedRaised when a Avalonia.AvaloniaProperty value changes on this object. Inherited from AvaloniaObject.