Imagine this is my code :
cvsGraph.DrawLine(230dip, 299dip, 200dip, 1dip, Colors.white, 2dip)
But i want to make the "2dip" variable in function of something else.
I suppose that i have to concatenate this as a string myself,
such as :
dim t as string = thicknessCounter & "dip"
cvsGraph.DrawLine(230dip, 299dip, 200dip, 1dip, Colors.white, t)
No it is wrong.
StrokeWidth expects a Float not a String.
You could simply use: cvsGraph.DrawLine(230dip, 299dip, 200dip, 1dip, Colors.White, thicknessCounter * 1dip)