Fungsi ini membuat wrap pada text/string yang panjang menjadi multiline text dengan maksimal karakter yang ditentukan sendiri. (Bahasa Indonesianya Wrap apa ya..? hehe..).
public string WordWrapper(string source, int maxLength)Semoga bermanfaat ya...
{
string result = "";
if (source.Length > maxLength)
{
string piece = source;
int i = 0;
piece = source.Substring(i, maxLength);
while (piece != string.Empty)
{
result += piece + "\n";
if (piece.Length < piece =" string.Empty;" i =" source.LastIndexOf(piece)"> maxLength)
piece = source.Substring(i, maxLength);
else
piece = source.Substring(i);
}
}
}
else
{
return source;
}
return result;
}
gagal :(
BalasHapus