Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


MeasureTextSize(string, float, MeasureMode, float, MeasureMode)

Computes the size needed to display a text string based on element style values such as font, font-size, and word-wrap.
Read time 1 minuteLast updated 10 days ago

Definition

public Vector2 MeasureTextSize(string textToMeasure, float width, VisualElement.MeasureMode widthMode, float height, VisualElement.MeasureMode heightMode)

Parameters

textToMeasure

The text to measure.

width

Suggested width. Can be zero.

widthMode

Width restrictions.

height

Suggested height.

heightMode

Height restrictions.

Returns

Type

Description

Vector2The horizontal and vertical size needed to display the text string.