Class CSSSkew
- Namespace
- CSharpToJavaScript.APIs.JS
- Assembly
- CSharpToJavaScript.dll
The CSSSkew interface of the CSS Typed Object Model API is part of the 'CSSTransformValue' interface. It represents the skew() value of the individual 'transform' property in CSS.
[Value("CSSSkew")]
public class CSSSkew : CSSTransformComponent
- Inheritance
-
CSSSkew
- Inherited Members
Remarks
Constructors
CSSSkew()
public CSSSkew()
CSSSkew(CSSNumericValue, CSSNumericValue)
The CSSSkew() constructor creates a new
CSSSkew object which represents theskew() value
of the individual 'transform' property in CSS.
public CSSSkew(CSSNumericValue ax, CSSNumericValue ay)
Parameters
Remarks
Properties
Ax
The ax property of the
CSSSkew interface gets and sets the angle used to distort the element
along the x-axis (or abscissa).
[Value("ax")]
public CSSNumericValue Ax { get; set; }
Property Value
Remarks
Ay
The ay property of the
CSSSkew interface gets and sets the angle used to distort the element
along the y-axis (or ordinate).
[Value("ay")]
public CSSNumericValue Ay { get; set; }