Navigation
API > API/Runtime > API/Runtime/Engine
Description
Render string using both a font and a material. The material should have a font exposed as a parameter so that the correct font page can be set based on the character being drawn.
| Name | StringSize |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/CanvasTypes.h |
| Include Path | #include "CanvasTypes.h" |
| Source | /Engine/Source/Runtime/Engine/Private/UserInterface/Canvas.cpp |
void StringSize
(
const UFont * Font,
int32 & XL,
int32 & YL,
FStringView Text
)
Parameters
| Name | Remarks |
|---|---|
| Font | font containing texture pages of character glyphs |
| XL | out width |
| YL | out height |
| Text | string of text to be measured |