|
Draws a round rectangle at specified coords
Syntax
Public Sub DrawRRect (ByRef oGraphics As clsGpGraphics, _ ByRef r As RECT, _ 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 |
ByRef r As RECT |
Coordinates |
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 |
|