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.
Constructors
CSSMathSum()
public CSSMathSum()
CSSMathSum(params Union13[])
NOTE
ExperimentalCSSMathSum() constructor creates anew 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
argsUnion13[]
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'.