Table of Contents

Class CSSMathSum

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The CSSMathSum interface of the CSS Typed Object Model API represents the result obtained by calling 'CSSNumericValue.Add', 'CSSNumericValue.Sub', or 'CSSNumericValue.ToSum' on 'CSSNumericValue'.

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

Remarks

A CSSMathSum is the object type returned when the StylePropertyMapReadOnly.get() method is used on a CSS property whose value is created with a calc() function.

See also on MDN

Constructors

CSSMathSum()

public CSSMathSum()

CSSMathSum(params Union13[])

NOTE
Experimental
The CSSMathSum() constructor creates a
new CSSMathSum object which creates a new 'CSSKeywordValue'
object which represents the result obtained by calling
'CSSNumericValue.Add', 'CSSNumericValue.Sub',
or 'CSSNumericValue.ToSum' on 'CSSNumericValue'.
public CSSMathSum(params Union13[] args)

Parameters

args Union13[]

Remarks

Properties

Values

The CSSMathSum.values read-only property
of the CSSMathSum interface returns a 'CSSNumericArray'
object which contains one or more 'CSSNumericValue' objects.

[Value("values")]
public CSSNumericArray Values { get; }

Property Value

CSSNumericArray

A 'CSSNumericArray'.

Remarks