DrawVerticalLine
From SwinGame
DrawVerticalLine draws a vertical line on the destination bitmap. The routine will draw a vertical line onto the screen if you do not specify the destination bitmap to draw on. The colour of a line can be set by passing a colour value.
Where is it: SGSDK_GRAPHICS
Contents |
Languages
Pascal
procedure DrawVerticalLine(dest: Bitmap; theColor: Color; x, y1, y2: Integer);
procedure DrawVerticalLine(theColor: Color; x, y1, y2: Single);
C#
public void Graphics.DrawVerticalLine(Color theColor, float x, float y1, float y2);
public void Graphics.DrawVerticalLine(Bitmap dest, Color theColour, int x, int y1, int y2);
Visual Basic .NET
Public Sub Graphics.DrawVerticalLine(ByVal dest As Bitmap, ByVal theColour As Color, ByVal x As Integer, ByVal y1 As Integer, ByVal y2 As Integer)
Public Sub Graphics.DrawVerticalLine(ByVal theColor As Color, ByVal x As Single, ByVal y1 As Single, ByVal y2 As Single)
Visual Basic 6
Public Sub Graphics.DrawVerticalLine(ByVal theColour As Long, ByVal x As Single, ByVal y1 As Single, ByVal y2 As Single)
Public Sub Graphics.DrawVerticalLine_OnBitmap(ByVal dest As Bitmap, ByVal theColour As Long, ByVal x As Long, ByVal y1 As Long, ByVal y2 As Long)

