Technology Software

How to Use a Region Class to Exclude a Region in VB.NET

    • 1). Open the VB.NET file in an editor such as Microsoft Visual Studio Express.

    • 2). Create a rectangular region by adding the following code in your function:

      Dim rect_region As New Region(New Rectangle(10, 10, 50, 50))

    • 3). Create a "GraphicsPath" object that you can use to draw on and add shapes to by adding the code:

      Dim graphics_path As New System.Drawing.Drawing2D.GraphicsPath

    • 4). Draw a circle onto the graphics path by adding the code:

      graphics_path.AddEllipse(40, 40, 20, 20)

    • 5). Call the "Exclude" method to exclude the circle from the region by adding the code:

      rect_region.Exclude(graphics_path)

      Future actions on the region will not apply to the excluded circle.

    • 6). Call the "Dispose" method when you are done using the objects by adding the code:

      graphics_path.Dispose()

      rect_region.Dispose()

    • 7). Save the VB.NET file, compile and run the program to view the created region.

SHARE
RELATED POSTS on "Technology"
How Do I Print Business Cards With Microsoft Publisher?
How Do I Print Business Cards With Microsoft Publisher?
How to Reduce the Size of Photos Using Adobe Photoshop Elements 3.0
How to Reduce the Size of Photos Using Adobe Photoshop Elements 3.0
Features and Benefits of Project Portfolio Management
Features and Benefits of Project Portfolio Management
Fix Registry - Fix Registry Errors Easily
Fix Registry - Fix Registry Errors Easily
Business Intelligence Solutions and Services
Business Intelligence Solutions and Services
AutoCAD Architecture
AutoCAD Architecture
Best Social Networking Apps
Best Social Networking Apps
IKE
IKE
Help Desk Software by help-desk-software
Help Desk Software by help-desk-software
What's Better - Building a BPM Solution Or Buying One?
What's Better - Building a BPM Solution Or Buying One?
How to Make Music Fade out in Moviemaker
How to Make Music Fade out in Moviemaker
How to Shrink a DVD With Nero Instructions
How to Shrink a DVD With Nero Instructions
Live Chat Software: Four Tips To Help You Get the Most Out of Your Software
Live Chat Software: Four Tips To Help You Get the Most Out of Your Software
How to Stop Rootkits
How to Stop Rootkits
3 First-Rate Foundations for Making Movies
3 First-Rate Foundations for Making Movies
How to Build Game Downloads
How to Build Game Downloads
The Linux Modem How-To
The Linux Modem How-To
Text-Terminals on Linux - 11.6 Terminal Server Connection
Text-Terminals on Linux - 11.6 Terminal Server Connection
The Linux Loadable Kernel Module How-To
The Linux Loadable Kernel Module How-To
How to Create Photo Albums With CSS
How to Create Photo Albums With CSS

Leave Your Reply

*