Draws a reversible line on the given graphics. A reversible line can be erased by just drawing over it again.
[Visual Basic] Public Shared Sub DrawReversibleLine( _ ByVal start As Point, _ ByVal end As Point, _ ByVal backColor As Color _ ) [C#] public static void DrawReversibleLine( Point start, Point end, Color backColor ); [C++] public: static void DrawReversibleLine( Point start, Point end, Color backColor ); [JScript] public static function DrawReversibleLine( start : Point, end : Point, backColor : Color );
ControlPaint Class | ControlPaint Members | System.WinForms Namespace