Graphics.Clip : Graphics « System.Drawing « VB.Net by API






Graphics.Clip

  
Imports System
Imports System.ComponentModel
Imports System.Windows.Forms
Imports System.Data
Imports System.Configuration
Imports System.Drawing
Imports System.Drawing.Drawing2D
Imports System.Drawing.Text
Imports System.Globalization
Imports System.Text
Imports System.Collections

Public Class MainClass
    
    Shared Sub Main()
        
        Dim myform As Form = New ClippingRegionForm()
        Application.Run(myform)
    End Sub
End Class



Public Class ClippingRegionForm
    Inherits System.Windows.Forms.Form

#Region " Windows Form Designer generated code "

    Public Sub New()
        MyBase.New()

        'This call is required by the Windows Form Designer.
        InitializeComponent()

        'Add any initialization after the InitializeComponent() call

    End Sub

    'Form overrides dispose to clean up the component list.
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing Then
            If Not (components Is Nothing) Then
                components.Dispose()
            End If
        End If
        MyBase.Dispose(disposing)
    End Sub

    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer

    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.  
    'Do not modify it using the code editor.
    <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
        components = New System.ComponentModel.Container()
        Me.Text = "ClippingRegionForm"
    End Sub

#End Region

    Private Sub ClippingRegionForm_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles MyBase.Paint
        Dim g As Graphics = e.Graphics

        Dim path As GraphicsPath = New GraphicsPath()
        path.AddEllipse(Me.ClientRectangle)
        Dim region As Region = New Region(path)
        g.DrawPath(Pens.Red, path)
        g.Clip = region

        Dim rect As Rectangle = Me.ClientRectangle
        rect.Offset(20, 20)
        rect.Width = rect.Width - 40
        rect.Height = rect.Height - 40
        g.FillRectangle(Brushes.Black, rect)

    End Sub
End Class

   
    
  








Related examples in the same category

1.Graphics.DrawString
2.Graphics.MeasureString
3.Graphics.Clear(Color c)
4.Graphics.CompositingMode
5.Graphics.CompositingQuality
6.Graphics.DrawArc
7.Graphics.DrawBezier
8.Graphics.DrawClosedCurve
9.Graphics.DrawCurve
10.Graphics.DrawEllipse(Pen, Int x, Int y, Int w, Int h)
11.Graphics.DrawIcon
12.Graphics.DrawImage(Bitmap bmp, Int x, Int y)
13.Graphics.DrawLine(Pen p, Int x, Int y, Int x1, Int y1)
14.Graphics.DrawPath
15.Graphics.DrawPolygon
16.Graphics.DrawRectangle(Pen pen1, Rectangle rectangle1)
17.Graphics.DrawString(String s, Font m, Brush , Int x, Int y)
18.Graphics.ExcludeClip
19.Graphics.FillClosedCurve
20.Graphics.FillEllipse
21.Graphics.FillPath
22.Graphics.FillPie
23.Graphics.FillPolygon
24.Graphics.FillRectangle(Brush b, Rectangle rect)
25.Graphics.FromImage(Bitmap m)
26.Graphics.MeasureCharacterRanges
27.Graphics.PageUnit
28.Graphics.ResetTransform()
29.Graphics.Restore
30.Graphics.ScaleTransform
31.Graphics.SetClip(Shape shape,CombineMode)
32.Graphics.SmoothingMode
33.Graphics.TextRenderingHint
34.Graphics.Transform
35.Graphics.TranslateTransform