我想在给定宽度的文本换行处将字符串拆分为数组
假设这是字符串。我希望文本宽度为 300 :
I want to split a string into an array at a point where the text wraps for a given width
并使用一个函数,像这样:
Text.SplitAtWrap(300,Text)
这是我想要的输出:
(0) I want to split a string into an
(1) array at a point where the text
(2) wraps for a given width
编辑:我可能不得不考虑字体,所以可能必须使用Drawing.Graphics
.