Class CSSMatrixComponent
- Namespace
- CSharpToJavaScript.APIs.JS
- Assembly
- CSharpToJavaScript.dll
The CSSMatrixComponent interface of the CSS Typed Object Model API represents the matrix() and matrix3d() values of the individual {{CSSXRef('transform')}} property in CSS. It inherits properties and methods from its parent 'CSSTransformValue'.
[Value("CSSMatrixComponent")]
public class CSSMatrixComponent : CSSTransformComponent
- Inheritance
-
CSSMatrixComponent
- Inherited Members
Remarks
Constructors
CSSMatrixComponent()
public CSSMatrixComponent()
CSSMatrixComponent(DOMMatrixReadOnly, CSSMatrixComponentOptions)
The CSSMatrixComponent() constructor
creates a new CSSMatrixComponent object representing the matrix() and matrix3d() values of the
individual 'transform' property in CSS.
public CSSMatrixComponent(DOMMatrixReadOnly matrix, CSSMatrixComponentOptions options = null)
Parameters
matrixDOMMatrixReadOnlyoptionsCSSMatrixComponentOptions
Remarks
Properties
Matrix
The matrix property of the
CSSMatrixComponent interface gets and sets a 2d or 3d matrix.
[Value("matrix")]
public DOMMatrix Matrix { get; set; }
Property Value
- DOMMatrix
a matrix.
Remarks
See the matrix() and matrix3d() pages for
examples.