I have one I have created via: "Draw.TextFixed(this,"myTextFixed", myTextString, TextPosition.TopRight, TextColorUp, myTextFont, Brushes.Transparent, Brushes.Transparent, 100);"
Where the text string is stored in "myTextString"
This places it in the top right corner, but if I wanted to shift it to the left a bit, is this possible?
I have tried to add white spaces by concatenating a blank string to "MyTextString" by doing this:
var displayText = Draw.TextFixed(this,"myTextFixed", (myTextString+" "), TextPosition.TopRight, TextColorDn, myTextFont, Brushes.Transparent, Brushes.Transparent, 100);
This also does not work. I tried using the .PadRight(10) method, but this also does not work.
Is this possible?

Comment