Gettiing end position of multi-line text

I need a method of drawing some multi-line text and then determining where the text left off. I see where with GlyphArrangement I can get the bounding box for the text, but I don’t see how to get the x coordinate that the last line stopped at. Am I missing something?

No, you’re not missing anything, but that’s not really something the class offers. You could just ask it for the position of the last glyph, I guess.

Oh I see, I missed that. There is a way to get the last glyph and then to get it’s position. Thanks.