Class GetInlineStylesForNodeResult
public sealed record GetInlineStylesForNodeResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<GetInlineStylesForNodeResult>
- Inheritance
-
EmptyResultGetInlineStylesForNodeResult
- Implements
-
IEquatable<EmptyResult>
- Inherited Members
-
EmptyResult.ToString()EmptyResult.GetHashCode()EmptyResult.Equals(EmptyResult)EmptyResult.<Clone>$()EmptyResult.AdditionalDataEmptyResult.AdditionalMessageData
Constructors
GetInlineStylesForNodeResult(CSSStyle?, CSSStyle?)
public GetInlineStylesForNodeResult(CSSStyle? InlineStyle, CSSStyle? AttributesStyle)
Parameters
InlineStyleCSSStyleInline style for the specified DOM node.
AttributesStyleCSSStyleAttribute-defined element style (e.g. resulting from "width=20 height=100%").
Properties
AttributesStyle
Attribute-defined element style (e.g. resulting from "width=20 height=100%").
public CSSStyle? AttributesStyle { get; init; }
Property Value
InlineStyle
Inline style for the specified DOM node.
public CSSStyle? InlineStyle { get; init; }