SVGLength: convertToSpecifiedUnits() method

The convertToSpecifiedUnits() method of the SVGLength interface allows you to convert the length's value to the specified unit type.

This function will:

Syntax

js
convertToSpecifiedUnits(unitType)

Parameters

unitType

A constant representing the unit type to which the length's value should be converted. This must be one of the constant values defined for the unitType property, with the exception of SVG_LENGTHTYPE_UNKNOWN.

Return value

None (undefined).

Examples

undefined

Converting a length to mm

js
// Get an SVGLength object
const svg = document.querySelector("svg");
const length = svg.createSVGLength();

// Set a length value in centimeters
length.valueAsString = "0.5cm";

// Convert the length to millimeters
length.convertToSpecifiedUnits(SVGLength.SVG_LENGTHTYPE_MM);

console.log(length.unitType); // Output: 7 (SVG_LENGTHTYPE_MM)
console.log(length.valueInSpecifiedUnits); // Output: 5
console.log(length.valueAsString); // Output: "5mm"

Specifications

See also