Class CSSSkewX
- Namespace
- CSharpToJavaScript.APIs.JS
- Assembly
- CSharpToJavaScript.dll
The CSSSkewX interface of the CSS Typed Object Model API represents the skewX() value of the individual {{CSSXRef('transform')}} property in CSS. It inherits properties and methods from its parent CSSTransformValue.
[Value("CSSSkewX")]
public class CSSSkewX : CSSTransformComponent
- Inheritance
-
CSSSkewX
- Inherited Members
Remarks
Constructors
CSSSkewX()
public CSSSkewX()
CSSSkewX(CSSNumericValue)
The CSSSkewX() constructor creates a new
CSSSkewX object which represents theskewX()
value of the individual 'transform' property in CSS.
public CSSSkewX(CSSNumericValue ax)
Parameters
Remarks
Properties
Ax
The ax property of the
CSSSkewX interface gets and sets the angle used to distort the element
along the x-axis (or abscissa).
[Value("ax")]
public CSSNumericValue Ax { get; set; }