IjwFramework.Ui.Painter.DrawString C# (CSharp) Method

DrawString() public method

public DrawString ( string s, Font f, Brush b ) : void
s string
f System.Drawing.Font
b System.Drawing.Brush
return void
		public void DrawString(string s, Font f, Brush b)
		{
			DrawString(s, f, b, 0, bounds.Right);
		}

Same methods

Painter::DrawString ( string s, Font f, Brush b, int yofs, int maxx ) : void

Usage Example

Exemplo n.º 1
0
		void RenderColumnHeader(IColumn c, Painter p, Node n)
		{
			p.SetPosition(c.Left);
			if (c.Left > 0)
				p.DrawSeparatorLine(Pens.Black);
			p.Pad(4);
			p.DrawString(c.Name, Font, Brushes.Black, 3, c.Left + c.Width);
		}
All Usage Examples Of IjwFramework.Ui.Painter::DrawString