...Objective:
Draw text in the top right corner of a certain color and font size.
Draw.TextFixed(this, @"MyObject",@"My Text", TextPosition.TopRight,);
To finish this, I'm not finding the correct syntax for both color and font size. What I'm after is to increase the font size from the default settings and display in Cyan Color.
Continuing with this for example threw an argument error:
Draw.TextFixed(this, @"MyObject",@"My Text", TextPosition.TopRight, Brushes.Cyan);
Goal:
My Text
Thanx

JM

Comment