Navigation
API > API/Runtime > API/Runtime/Engine
References
| Module | Engine |
| Header | /Engine/Source/Runtime/Engine/Public/CanvasTypes.h |
| Include | #include "CanvasTypes.h" |
| Source | /Engine/Source/Runtime/Engine/Private/UserInterface/Canvas.cpp |
void StringSize
(
const UFont * Font,
int32 & XL,
int32 & YL,
const TCHAR * Text
)
Remarks
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.
Parameters
| Name | Description |
|---|---|
| Font | font containing texture pages of character glyphs |
| XL | out width |
| YL | out height |
| Text | string of text to be measured |