Example #1
0
        public static int Fill(Widget widget, string str, char ch, int x, int y, int w, int h)
        {
            int endx, endy;
            int length = Draw(widget, str, x, y, w, h, out endx, out endy);

            widget.Fill(ch, x, y, w, h, endx, endy);
            return(length);
        }
Example #2
0
		public static int Fill(Widget widget, string str, char ch, int x, int y, int w, int h)
		{
			int endx, endy;
			int length = Draw(widget, str, x, y, w, h, out endx, out endy);
			widget.Fill(ch, x, y, w, h, endx, endy);
			return length;
		}