You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I tried to get the angle value from CSS definition "transform: rotate(-45deg)". The code expected may be var transform = css.GetProperty(PropertyNames.Transform); if (transform.RawValue is CssTupleValue<ICssValue> tt) { var rotateItem = tt.Items.FirstOrDefault(item => item is CssRotateValue) as CssRotateValue; }
But the CssRotateValue currently is internal. Maybe I am right, is there any alternative to do that?
Background
No response
Specification
No response
The text was updated successfully, but these errors were encountered:
Description
When I tried to get the angle value from CSS definition "transform: rotate(-45deg)". The code expected may be
var transform = css.GetProperty(PropertyNames.Transform); if (transform.RawValue is CssTupleValue<ICssValue> tt) { var rotateItem = tt.Items.FirstOrDefault(item => item is CssRotateValue) as CssRotateValue; }
But the CssRotateValue currently is internal. Maybe I am right, is there any alternative to do that?
Background
No response
Specification
No response
The text was updated successfully, but these errors were encountered: