AngleSharp.Css by AngleSharp

<PackageReference Include="AngleSharp.Css" Version="1.0.0-alpha-107" />

.NET API 424,448 bytes

 CssShapeValue

public sealed class CssShapeValue : ICssValue, ICssFunctionValue
Represents a CSS shape. https://developer.mozilla.org/en-US/docs/Web/CSS/shape
public ICssValue[] Arguments { get; }

Gets the arguments.

public ICssValue Bottom { get; }

Gets the bottom side.

public string CssText { get; }

Gets the CSS text representation.

public ICssValue Left { get; }

Gets the left side.

public string Name { get; }

Gets the name of the function.

public ICssValue Right { get; }

Gets the right side.

public ICssValue Top { get; }

Gets the top side.

public CssShapeValue(ICssValue top, ICssValue right, ICssValue bottom, ICssValue left)

Creates a new shape value.