Table of Contents

Class CSSMathInvert

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The CSSMathInvert interface of the CSS Typed Object Model API represents a CSS 'calc' used as calc(1 / <value>). It inherits properties and methods from its parent 'CSSNumericValue'.

[Value("CSSMathInvert")]
public class CSSMathInvert : CSSMathValue
Inheritance
CSSMathInvert
Inherited Members

Remarks

Constructors

CSSMathInvert()

public CSSMathInvert()

CSSMathInvert(Union13)

The CSSMathInvert() constructor creates a
new CSSMathInvert object which represents a CSS
'calc' used as calc(1 / value)

public CSSMathInvert(Union13 arg)

Parameters

arg Union13

Remarks

Properties

Value

The CSSMathInvert.value read-only property of the
CSSMathInvert interface returns a 'CSSNumericValue' object.

[Value("value")]
public CSSNumericValue Value { get; }

Property Value

CSSNumericValue

A 'CSSNumericValue'.

Remarks