Skip to main content

MarkerBrushes Struct

Definition

Assembly:Avalonia.Controls.Charts
Package:Avalonia.Controls.Charts

Represents the resolved fill and stroke brushes used to render a marker.

public struct MarkerBrushes

Inheritance: ValueType -> MarkerBrushes

Implements: IEquatable<MarkerBrushes>

Constructors

NameDescription
MarkerBrushesRepresents the resolved fill and stroke brushes used to render a marker.

MarkerBrushes Constructor

Represents the resolved fill and stroke brushes used to render a marker.

public MarkerBrushes(Avalonia.Media.IBrush Fill, Avalonia.Media.IBrush Stroke)

Parameters

Fill Avalonia.Media.IBrush

The marker fill brush.

Stroke Avalonia.Media.IBrush

The marker stroke brush.

Methods

NameDescription
DeconstructNo summary available.
Equals (2 overloads)No summary available.
GetHashCodeNo summary available.
ToStringNo summary available.

Deconstruct Method

public void Deconstruct(Avalonia.Media.IBrush& Fill, Avalonia.Media.IBrush& Stroke)

Parameters

Fill Avalonia.Media.IBrush&

Stroke Avalonia.Media.IBrush&

Equals overloads

Equals Method

public bool Equals(Avalonia.Controls.Charts.MarkerBrushes other)
Parameters

other Avalonia.Controls.Charts.MarkerBrushes

Returns

bool

Equals Method

public bool Equals(object obj)
Parameters

obj object

Returns

bool

GetHashCode Method

public int GetHashCode()

Returns

int

ToString Method

public string ToString()

Returns

string

Properties

NameDescription
FillThe marker fill brush.
StrokeThe marker stroke brush.

Fill Property

The marker fill brush.

public Avalonia.Media.IBrush Fill { get; set; }

Stroke Property

The marker stroke brush.

public Avalonia.Media.IBrush Stroke { get; set; }