Correct
Windows Application Programming Interface (API) -dynamic-link library that are used to
perform tasks that already part of Windows operating system
-save development time (advantage)'
-difficult to work with and unforgiving when things go wrong (disadvantage)
Graphics Device Interface (GDI+) -Windows API responsible for displaying graphics and
formatted texts
System.Drawing Namespace -support basic GDI+ graphics functionality (parent
namespace)
-child namespace support a) advanced 2D and vector graphics functionality, b) advanced
imaging functionality, and c)print-related and typographical services
-child namespace contains types that extend design-time user-interface logic and drawing
System.Drawing Child Namespaces -System.Drawing.Drawing2D
-System.Drawing.Imaging
-System.Drawing.Text
System.Drawing.Configuration configuration for classes
, System.Drawing.Design -extend design-time user interface (UI) logic and drawing
System.Drawing.Drawing2D -provides advanced 2D and vector graphics functionality
System.Drawing.Imaging -provides advanced GDI+ imaging directory
System.Drawing.Printing -print-related services
System.Drawing.Text -advanced GDI+ typography functionality
PictureBox display graphics in bitmap, GIF, JPEG, metafile, or icon format
"Paint"Eventhandler event to create graphic in a form or picturebox
Color Object 1. Built-in color (e.g Color.Blue)
2. RGB Value (e.g Color.FromArgb(255,255,255) or
System.Drawing.ColorTranslator.FromHtml("#FF5B5B")
Pen Object -for lines and points
-properties of color and width
Dim YellowPen As New Pen(Color.Yellow,1)