toString
Method of css/cssom/MSCSSMatrixcss/cssom/MSCSSMatrix
Syntax
var object = object.toString();
Return Value
Returns an object of type DOM NodeDOM Node
Type: HRESULT
This method can return one of these values.
Return value | Description |
---|---|
S_OK | The operation completed successfully. |
DOMString
A string value that corresponds to the matrix. This string value contains matrix(, followed by a comma-and-whitespace-delimited list of matrix values, followed by ).
For a 2-D transform matrix, the matrix value list is ordered a, b, c, d, e, f.
For a 3-D transform matrix, the matrix value list is ordered m11, m21, m31, m41, m12, m22, m32, m42, m13, m23, m33, m43, m14, m24, m34, m44.
Syntax
Standards information
- CSS Transitions Module Level 3, Section 10.1
Parameters
- matrixString [out, retval]
- Type: DOMStringA string value that corresponds to the matrix. This string value contains
matrix(
, followed by a comma-and-whitespace-delimited list of matrix values, followed by)
.Value Meaning <a id="matrix_a__b__c__d__e__f_"/><a id="MATRIX_A__B__C__D__E__F_"/> - matrix(a, b, c, d, e, f)
For a 2-D transform matrix, the matrix value list is ordered a, b, c, d, e, f. <a id="matrix_m11__m21__m31__m41__m12__m22__m32__m42__m13__m23__m33__m43__m14__m24__m34__m44_"/><a id="MATRIX_M11__M21__M31__M41__M12__M22__M32__M42__M13__M23__M33__M43__M14__M24__M34__M44_"/> - matrix(m11, m21, m31, m41, m12, m22, m32, m42, m13, m23, m33, m43, m14, m24, m34, m44)
For a 3-D transform matrix, the matrix value list is ordered m11, m21, m31, m41, m12, m22, m32, m42, m13, m23, m33, m43, m14, m24, m34, m44.
See also
Related pages
- MSCSSMatrixMSCSSMatrix
Attributions
Microsoft Developer Network: [Windows Internet Explorer API reference Article]