public void DrawAlotOfThings(... )
{
DrawText(tag, false, text, barsAgo, price, 0, Color.Black, new Font("Arial", 8), StringAlignment.Far, Color.Empty, Color.Empty, 0);
}
DrawAlotOfThings(Far, Black)
and have the DrawText to get Color.Black and StringAlignment.Far
Im not sure how to set this up. I know how to do it with strings and ints, but not with things like Color.Black and StringAlignment.Far.

Comment