1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-04 15:26:00 +02:00

Corlib fixes

This commit is contained in:
Brian Fiete 2020-02-05 17:07:47 -08:00
parent 45638a6e7e
commit 2ed6a9a94b
3 changed files with 7 additions and 45 deletions

View file

@ -2579,6 +2579,13 @@ namespace Beefy.widgets
lineEnd--;
}
public bool IsLineWhiteSpace(int line)
{
String str = scope .();
GetLineText(line, str);
return str.IsWhiteSpace;
}
public virtual void GetLineText(int line, String outStr)
{
GetTextData();