public static void TextBox(int row, int col, int width, int height, String text){ int area = width * height; if (text.length() < area){ for (int i = 0; i < area - text.length();i++){ text += " "; } } for (int r = 0; r < height; r++){ drawText(text.substring(r * width, (r + 1) * width), r, col); } }
-
Notifications
You must be signed in to change notification settings - Fork 0
koiifshd/test
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published