|
Draws a round rectangle at specified coords
Syntax
Public Sub DrawRRectCoords (ByRef oGraphics As clsGpGraphics, _ ByVal X1 As Long, _ ByVal y1 As Long, _ ByVal X2 As Long, _ ByVal y2 As Long, _ ByVal bFilled As Boolean, _ ByVal lBackColor As Long, _ ByVal lBorderColor As Long, _ Optional ByVal iBorderWidth As Integer = 1, _ Optional ByVal ids As GpDashStyle = DashStyleSolid, _ Optional ByVal iRoundWidth As Integer = 0)
Parameters
Parameter |
Description |
ByRef oGraphics As clsGpGraphics |
[clsGpGraphics] object to draw on |
ByVal X1 As Long |
Specifies the x-coordinate of the rectangle's upper-left corner. |
ByVal y1 As Long |
Specifies the y-coordinate of the rectangle's upper-left corner. |
ByVal X2 As Long |
Specifies the x-coordinate of the rectangle's lower-right corner. |
ByVal y2 As Long |
Specifies the y-coordinate of the rectangle's lower-right corner. |
ByVal bFilled As Boolean |
Is the rectangle filled? |
ByVal lBackColor As Long |
The fill color (standard RGB color) |
ByVal lBorderColor As Long |
The border color (standard RGB color) |
Optional ByVal iBorderWidth As Integer = 1 |
The border size |
Optional ByVal ids As GpDashStyle = DashStyleSolid |
Border dash style |
Optional ByVal iRoundWidth As Integer = 0 |
Round size |
|