MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / GetTextSize

Method GetTextSize

Source/Engine/UI/GUI/Common/TextBox.cs:149–158  ·  view source on GitHub ↗

()

Source from the content-addressed store, hash-verified

147
148 /// <inheritdoc />
149 public override Float2 GetTextSize()
150 {
151 var font = GetFont();
152 if (font == null)
153 {
154 return Float2.Zero;
155 }
156
157 return font.MeasureText(ConvertedText(), ref _layout);
158 }
159
160 private Font GetFont()
161 {

Callers

nothing calls this directly

Calls 1

MeasureTextMethod · 0.80

Tested by

no test coverage detected