Table of Contents

Class CSSMathValue

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The CSSMathValue interface of the CSS Typed Object Model API a base class for classes representing complex numeric values.

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

Remarks

Constructors

CSSMathValue()

public CSSMathValue()

Properties

Operator

The CSSMathValue.operator read-only
property of the CSSMathValue interface indicates the operator that the
current subtype represents. For example, if the current CSSMathValue
subtype is CSSMathSum, this property will return the string
"sum".

[Value("operator")]
public CSSMathOperator Operator { get; }

Property Value

CSSMathOperator

A 'String'.

InterfaceValue
'CSSMathSum'"sum"
'CSSMathProduct'"product"
'CSSMathMin'"min"
'CSSMathMax'"max"
'CSSMathClamp'"clamp"
'CSSMathNegate'"negate"
'CSSMathInvert'"invert"

Remarks