UtilDrawingFillRectangleOnScreen Method
Draw and fill a rectangle on the specified device screen.
Namespace: DevCase.Core.Media.GraphicsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static void FillRectangleOnScreen(
Screen screen,
Rectangle rc,
Color color
)
Public Shared Sub FillRectangleOnScreen (
screen As Screen,
rc As Rectangle,
color As Color
)
Dim screen As Screen
Dim rc As Rectangle
Dim color As Color
UtilDrawing.FillRectangleOnScreen(screen,
rc, color)
public:
static void FillRectangleOnScreen(
Screen^ screen,
Rectangle rc,
Color color
)
static member FillRectangleOnScreen :
screen : Screen *
rc : Rectangle *
color : Color -> unit
No code example is currently available or this language may not be supported.
Parameters
- screen Screen
-
The device screen where to draw the rectangle.
- rc Rectangle
-
A Rectangle structure that represents the size and position of the rectangle to draw.
- color Color
-
The color of the rectangle.
This is a code example.
No code example is currently available or this language may not be supported.
Dim scr As Screen = Screen.PrimaryScreen
Dim rc As Rectangle = scr.Bounds
DrawRectangleOnScreen(scr, rc, Color.Red)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.