Class GetAnimatedStylesForNodeCommandResponse
Response for Returns the styles coming from animations & transitions including the animation & transition styles coming from inheritance chain.
public sealed class GetAnimatedStylesForNodeCommandResponse : ICommandResponse<GetAnimatedStylesForNodeCommandSettings>, ICommandResponse
- Inheritance
-
GetAnimatedStylesForNodeCommandResponse
- Implements
- Inherited Members
- Extension Methods
Properties
AnimationStyles
Styles coming from animations.
[JsonPropertyName("animationStyles")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public CSSAnimationStyle[]? AnimationStyles { get; set; }
Property Value
Inherited
Inherited style entries for animationsStyle and transitionsStyle from the inheritance chain of the element.
[JsonPropertyName("inherited")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public InheritedAnimatedStyleEntry[]? Inherited { get; set; }
Property Value
TransitionsStyle
Style coming from transitions.
[JsonPropertyName("transitionsStyle")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public CSSStyle? TransitionsStyle { get; set; }