Class GetAnimatedStylesForNodeResult
public sealed record GetAnimatedStylesForNodeResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<GetAnimatedStylesForNodeResult>
- Inheritance
-
EmptyResultGetAnimatedStylesForNodeResult
- Implements
-
IEquatable<EmptyResult>
- Inherited Members
-
EmptyResult.ToString()EmptyResult.GetHashCode()EmptyResult.Equals(EmptyResult)EmptyResult.<Clone>$()EmptyResult.AdditionalDataEmptyResult.AdditionalMessageData
Constructors
GetAnimatedStylesForNodeResult(ImmutableArray<CSSAnimationStyle>?, CSSStyle?, ImmutableArray<InheritedAnimatedStyleEntry>?)
public GetAnimatedStylesForNodeResult(ImmutableArray<CSSAnimationStyle>? AnimationStyles, CSSStyle? TransitionsStyle, ImmutableArray<InheritedAnimatedStyleEntry>? Inherited)
Parameters
AnimationStylesImmutableArray<CSSAnimationStyle>?Styles coming from animations.
TransitionsStyleCSSStyleStyle coming from transitions.
InheritedImmutableArray<InheritedAnimatedStyleEntry>?Inherited style entries for animationsStyle and transitionsStyle from the inheritance chain of the element.
Properties
AnimationStyles
Styles coming from animations.
public ImmutableArray<CSSAnimationStyle>? AnimationStyles { get; init; }
Property Value
Inherited
Inherited style entries for animationsStyle and transitionsStyle from the inheritance chain of the element.
public ImmutableArray<InheritedAnimatedStyleEntry>? Inherited { get; init; }
Property Value
TransitionsStyle
Style coming from transitions.
public CSSStyle? TransitionsStyle { get; init; }