Table of Contents

Class BorderCssValues

Namespace
BlazOrbit.Components
Assembly
BlazOrbit.Core.dll

Holds the computed CSS border values extracted from a BorderStyle.

public sealed class BorderCssValues
Inheritance
object
BorderCssValues

Constructors

BorderCssValues()

public BorderCssValues()

Properties

All

CSS value for all sides, or null if not set.

public string? All { get; init; }

Property Value

string

Bottom

CSS value for the bottom side, or null if not set.

public string? Bottom { get; init; }

Property Value

string

Left

CSS value for the left side, or null if not set.

public string? Left { get; init; }

Property Value

string

Radius

CSS border-radius value, or null if not set.

public string? Radius { get; init; }

Property Value

string

Right

CSS value for the right side, or null if not set.

public string? Right { get; init; }

Property Value

string

Top

CSS value for the top side, or null if not set.

public string? Top { get; init; }

Property Value

string