Table of Contents

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 the
skew() value
of the individual 'transform' property in CSS.

public CSSSkew(CSSNumericValue ax, CSSNumericValue ay)

Parameters

ax CSSNumericValue
ay CSSNumericValue

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

CSSNumericValue

A CSSNumericValue.

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; }

Property Value

CSSNumericValue

A CSSNumericValue.

Remarks