Class CSSPropertyRegistration
Representation of a custom property registration through CSS.registerProperty
public sealed record CSSPropertyRegistration : IEquatable<CSSPropertyRegistration>
- Inheritance
-
CSSPropertyRegistration
- Implements
- Inherited Members
Constructors
CSSPropertyRegistration(string, bool, string)
Representation of a custom property registration through CSS.registerProperty
public CSSPropertyRegistration(string PropertyName, bool Inherits, string Syntax)
Parameters
Properties
Inherits
public bool Inherits { get; init; }
Property Value
InitialValue
public Value? InitialValue { get; init; }
Property Value
PropertyName
public string PropertyName { get; init; }
Property Value
Syntax
public string Syntax { get; init; }