Wrap yield with save() and restore().
void varyingTextSize(ITextLayouter layouter) { layouter.write("Small text. "); layouter.group({ layouter.fontSize = 12f; layouter.write("Large text. "); }); layouter.write("Small again."); }
See Implementation
Wrap yield with save() and restore().