Interface CSSMathSum
interface CSSMathSum {
operator: CSSMathOperator;
values: CSSNumericArray;
add(...values: CSSNumberish[]): CSSNumericValue;
div(...values: CSSNumberish[]): CSSNumericValue;
equals(...value: CSSNumberish[]): boolean;
max(...values: CSSNumberish[]): CSSNumericValue;
min(...values: CSSNumberish[]): CSSNumericValue;
mul(...values: CSSNumberish[]): CSSNumericValue;
sub(...values: CSSNumberish[]): CSSNumericValue;
to(unit: string): CSSUnitValue;
toString(): string;
toSum(...units: string[]): CSSMathSum;
type(): CSSNumericType;
}
operator: CSSMathOperator;
values: CSSNumericArray;
add(...values: CSSNumberish[]): CSSNumericValue;
div(...values: CSSNumberish[]): CSSNumericValue;
equals(...value: CSSNumberish[]): boolean;
max(...values: CSSNumberish[]): CSSNumericValue;
min(...values: CSSNumberish[]): CSSNumericValue;
mul(...values: CSSNumberish[]): CSSNumericValue;
sub(...values: CSSNumberish[]): CSSNumericValue;
to(unit: string): CSSUnitValue;
toString(): string;
toSum(...units: string[]): CSSMathSum;
type(): CSSNumericType;
}
Hierarchy
- CSSMathValue
- CSSMathSum (View Summary)
Properties
Readonlyoperator
The CSSMathValue.operator read-only property of the CSSMathValue interface indicates the operator that the current subtype represents.
Readonlyvalues
values: CSSNumericArray
The CSSMathSum.values read-only property of the CSSMathSum interface returns a CSSNumericArray object which contains one or more CSSNumericValue objects.
Methods
add
div
equals
The
equals()method of the value are strictly equal.Parameters
- ...value: CSSNumberish[]
Returns boolean
max
min
mul
The
mul()method of the the supplied value.Parameters
- ...values: CSSNumberish[]
Returns CSSNumericValue
sub
to
toString
Returns string
toSum
The
toSum()method of thejs-nolint toSum(units)-units- : The units to convert to.Parameters
- ...units: string[]
Returns CSSMathSum
type
The
type()method of theCSSNumericValue, one ofangle,flex,frequency,length,resolution,percent,percentHint, ortime.Returns CSSNumericType
The
CSSMathSuminterface of the CSS Typed Object Model API represents the result obtained by calling CSSNumericValue.add, CSSNumericValue.sub, or CSSNumericValue.toSum on CSSNumericValue.MDN Reference