Reputation: 19589
soft line means, the line will draw some interim color around.
Upvotes: 2
Views: 929
Reputation: 308530
GDI can't do this. For GDI+ see this Microsoft article: http://msdn.microsoft.com/en-us/library/ms536351(VS.85).aspx
To turn on line smoothing use
myGraphics.SetSmoothingMode(SmoothingModeAntiAlias);
Upvotes: 4