﻿<?xml version="1.0" encoding="utf-8"?>
<doc>
  <assembly>Microsoft.SPOT.Graphics</assembly>
  <members>
    <member name="T:Microsoft.SPOT.Bitmap">
      <summary>Encapsulates a bitmap, which consists of the pixel data for a graphics image and its methods and attributes.</summary>
      <remarks>This class cannot be inherited.
        The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
        The .NET Micro Framework currently provides support for the following bitmap types.
        - 1bpp Indexed
        - 24bpp RGB
        - 32bpp RGB
        - 48bpp RGB
        - 16bpp RGB 555 (five bits for each color, one bit unused)
        - 16bpp RGB 556 (five bits each for red and blue, six bits for green)
        If you add a bitmap to a resource file, your project must reference the assemblies Microsoft.SPOT.Graphics.dll and Microsoft.SPOT.TinyCore.dll.
      </remarks>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.Flush">
      <summary>Flushes the current bitmap to the display device.</summary>
      <remarks>The bitmap must have the same dimensions as the display device.
        The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.Flush(System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Flushes the current bitmap to the display device.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <param name="x">The x-coordinate of the bitmap's upper-left corner.</param>
      <param name="y">The y-coordinate of the bitmap's upper-left corner.</param>
      <param name="width">The width of the bitmap.</param>
      <param name="height">The height of the bitmap.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.Clear">
      <summary>Clears the entire drawing surface.</summary>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.Circle(System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Draws a circle specified by a coordinate pair (x and y) and a radius, using a specified raster operation.</summary>
      <param name="xCenter">Not yet documented.</param>
      <param name="yCenter">Not yet documented.</param>
      <param name="radius">Not yet documented.</param>
      <param name="dwRop">Not yet documented.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.DrawTextInRect(System.String@,System.Int32@,System.Int32@,System.Int32,System.Int32,System.Int32,System.Int32,System.UInt32,Microsoft.SPOT.Presentation.Media.Color,Microsoft.SPOT.Font)">
      <summary>Draws text in a specified rectangle.</summary>
      <returns>true if all of the specified text was drawn; false if this is not the case and the text parameter contains the remaining text that was not drawn.</returns>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <param name="text">The text to be drawn. This parameter contains the remaining text, or an empty string, if the complete text string did not fit in the specified rectangle.</param>
      <param name="xRelStart">The x-coordinate, relative to the rectangle, at which text drawing is to begin.</param>
      <param name="yRelStart">The y-coordinate, relative to the rectangle, at which text drawing is to begin.</param>
      <param name="x">The x-coordinate of the upper-left corner of the rectangle.</param>
      <param name="y">The y-coordinate of the upper-left corner of the rectangle.</param>
      <param name="width">The width of the rectangle.</param>
      <param name="height">The height of the rectangle.</param>
      <param name="dtFlags">Flags that specify the format of the text.</param>
      <param name="color">The color to be used for the text.</param>
      <param name="font">The font to be used for the text.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.SetClippingRectangle(System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Sets the clipping region (clipping rectangle) of a bitmap with a specified coordinate pair (x,y), width, and height.</summary>
      <param name="x">The x-coordinate of the upper-left corner of the clipping rectangle.</param>
      <param name="y">The y-coordinate of the upper-left corner of the clipping rectangle.</param>
      <param name="width">The width of the clipping rectangle.</param>
      <param name="height">The height of the clipping rectangle.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.TransparentBlt(System.Int32,System.Int32,System.Int32,System.Int32,Microsoft.SPOT.Bitmap,System.Int32,System.Int32)">
      <summary>Combines the data for the specified source bitmap and the current bitmap (destination bitmap) in a defined rectangular area.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes</remarks>
      <param name="xDst">The x-coordinate of the upper-left corner of the destination rectangle.</param>
      <param name="yDst">The y-coordinate of the upper-left corner of the destination rectangle.</param>
      <param name="nWidth">The width of the source and destination rectangles.</param>
      <param name="nHeight">The height of the source and destination rectangles.</param>
      <param name="pSrc">The source bitmap.</param>
      <param name="xSrc">The x-coordinate of the upper-left corner of the source rectangle.</param>
      <param name="ySrc">The y-coordinate of the upper-left corner of the source rectangle.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.MaskBlt(System.Int32,System.Int32,System.Int32,System.Int32,Microsoft.SPOT.Bitmap,System.Int32,System.Int32,Microsoft.SPOT.Bitmap)">
      <summary>Combines the data for the source bitmap and the current (destination) bitmap, using the specified mask.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes</remarks>
      <param name="xDst">The x-coordinate of the upper-left corner of the destination rectangle.</param>
      <param name="yDst">The y-coordinate of the upper-left corner of the destination rectangle.</param>
      <param name="nWidth">The width of the source and destination rectangles.</param>
      <param name="nHeight">The height of the source and destination rectangles.</param>
      <param name="pSrc">The source bitmap.</param>
      <param name="xSrc">The x-coordinate of the upper-left corner of the source rectangle.</param>
      <param name="ySrc">The y-coordinate of the upper-left corner of the source rectangle.</param>
      <param name="pMask">A mask that specifies how the bitmaps are to be combined.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.PatBlt(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">      
      <summary>Creates a bit pattern on a bitmap.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes</remarks>
      <param name="xDst">The x-coordinate of the upper-left corner of the destination rectangle.</param>
      <param name="yDst">The y-coordinate of the upper-left corner of the destination rectangle.</param>
      <param name="nWidth">The width of the source and destination rectangles.</param>
      <param name="nHeight">The height of the source and destination rectangles.</param>
      <param name="dwRop">A raster operation code, which defines the pattern to be created on the bitmap.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.RotateBlt(Microsoft.SPOT.Bitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Rotates a bitmap to a specified degree around a specified point.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes</remarks>
      <param name="pSrc">The source bitmap.</param>
      <param name="degree">The degree of rotation.</param>
      <param name="xSrc">The x-coordinate of the center of the source bitmap.</param>
      <param name="ySrc">The y-coordinate of the center of the source bitmap.</param>
      <param name="xDst">The x-coordinate of the center of the destination bitmap.</param>
      <param name="yDst">The y-coordinate of the center of the destination bitmap.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.DrawEllipse(Microsoft.SPOT.Presentation.Media.Color,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,Microsoft.SPOT.Presentation.Media.Color,System.Int32,System.Int32,Microsoft.SPOT.Presentation.Media.Color,System.Int32,System.Int32,System.Double)">
      <summary>Draws an ellipse filled with a specified color gradient.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes</remarks>
      <param name="colorOutline">The outline color.</param>
      <param name="thicknessOutline">The thickness of the ellipse's outline, in pixels.</param>
      <param name="x">The x-coordinate location of the center of the ellipse.</param>
      <param name="y">The y-coordinate location of the center of the ellipse.</param>
      <param name="xRadius">The radius of the ellipse in the x-coordinate direction.</param>
      <param name="yRadius">The radius of the ellipse in the y-coordinate direction.</param>
      <param name="colorGradientStart">The starting color of the color gradient.</param>
      <param name="xGradientStart">The x-coordinate location of the starting point of the color gradient.</param>
      <param name="yGradientStart">The y-coordinate location of the starting point of the color gradient.</param>
      <param name="colorGradientEnd">The ending color of the color gradient.</param>
      <param name="xGradientEnd">The x-coordinate location of the ending point of the color gradient.</param>
      <param name="yGradientEnd">The y-coordinate location of the ending point of the color gradient.</param>
      <param name="opacity">The opacity of the ellipse.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.DrawImage(System.Int32,System.Int32,Microsoft.SPOT.Bitmap,System.Int32,System.Int32,System.Int32,System.Int32,System.UInt16)">
      <summary>Draws a rectangular block of pixels with a specified degree of transparency.</summary>
      <remarks>Passing negative values in the xSrc and ySrc parameters produces undefined results.
      The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <param name="xDst">The x-coordinate location of the upper-left corner of the rectangular area on the display to which the specified pixels are to be copied.</param>
      <param name="yDst">The y-coordinate location of the upper-left corner of the rectangular area on the display to which the specified pixels are to be copied.</param>
      <param name="bitmap">The source bitmap.</param>
      <param name="xSrc">The x-coordinate location of the upper-left corner of the rectangular area in the source bitmap from which the specified pixels are to be copied.</param>
      <param name="ySrc">The x-coordinate location of the upper-left corner of the rectangular area in the source bitmap from which the specified pixels are to be copied.</param>
      <param name="width">The width of the rectangular block of pixels to be copied.</param>
      <param name="height">The height of the rectangular block of pixels to be copied.</param>
      <param name="opacity">The degree of opacity of the bitmap. A value of 0 (zero) makes the bitmap completely opaque (not transparent at all); a value of 255 makes the bitmap completely transparent.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.MakeTransparent(Microsoft.SPOT.Presentation.Media.Color)">
      <summary>Sets a bitmap's transparent color.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <param name="color">The color to be used as the bitmap's transparent color.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.StretchImage(System.Int32,System.Int32,Microsoft.SPOT.Bitmap,System.Int32,System.Int32,System.UInt16)">
      <summary>Draws a rectangular block of pixels on the display device, stretching or shrinking the rectangular area as necessary.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <param name="xDst">The x-coordinate of the upper-left corner of the rectangular area to which the pixels are to be copied.</param>
      <param name="yDst">The y-coordinate of the upper-left corner of the rectangular area to which the pixels are to be copied.</param>
      <param name="bitmap">The source bitmap.</param>
      <param name="width">The width of the rectangluar area to which the pixels are to be copied.</param>
      <param name="height">The height of the rectangluar area to which the pixels are to be copied.</param>
      <param name="opacity">The bitmap's degree of opacity. A value of 0 (zero) makes the bitmap completely opaque (not transparent at all); a value of 255 makes the bitmap completely transparent.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.DrawLine(Microsoft.SPOT.Presentation.Media.Color,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Draws a line on the display device.</summary>
      <remarks>The thickness parameter is not currently available. For now, all lines are one pixel thick.
      The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <param name="color">The color of the line.</param>
      <param name="thickness">The thickness of the line, in pixels. Remark: The thickness parameter is not currently available. For now, all lines are one pixel thick.</param>
      <param name="x0">The x-coordinate location of the line's starting point.</param>
      <param name="y0">The y-coordinate location of the line's starting point.</param>
      <param name="x1">The x-coordinate location of the line's ending point.</param>
      <param name="y1">The y-coordinate location of the line's ending point.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.DrawRectangle(Microsoft.SPOT.Presentation.Media.Color,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,Microsoft.SPOT.Presentation.Media.Color,System.Int32,System.Int32,Microsoft.SPOT.Presentation.Media.Color,System.Int32,System.Int32,System.UInt16)">
      <summary>Draws a rectangle on the display device.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <param name="colorOutline">The color of the rectangle's outline.</param>
      <param name="thicknessOutline">The thickness of the rectangle's outline, in pixels.</param>
      <param name="x">The x-coordinate of the rectangle's upper-left corner.</param>
      <param name="y">The y-coordinate of the rectangle's upper-left corner.</param>
      <param name="width">The width of the rectangle, in pixels.</param>
      <param name="height">The height of the rectangle, in pixels.</param>
      <param name="xCornerRadius">The x-coordinate value of the corner radius used to produce rounded corners on the rectangle.</param>
      <param name="yCornerRadius">The y-coordinate value of the corner radius used to produce rounded corners on the rectangle.</param>
      <param name="colorGradientStart">The starting color for a color gradient.</param>
      <param name="xGradientStart">Holds the x coordinate of the starting location of the color gradient.</param>
      <param name="yGradientStart">Holds the y coordinate of the starting location of the color gradient.</param>
      <param name="colorGradientEnd">Specifies the ending color of the color gradient.</param>
      <param name="xGradientEnd">Holds the x coordinate of the ending location of the color gradient.</param>
      <param name="yGradientEnd">Holds the y coordinate of the ending location of the color gradient.</param>
      <param name="opacity">Specifies the opacity of the fill color. Set to 0x00 for completely transparent. Set to 0xFF for completely opague.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.DrawText(System.String,Microsoft.SPOT.Font,Microsoft.SPOT.Presentation.Media.Color,System.Int32,System.Int32)">
      <summary>Draws text on the display device, using a specified font and color.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <param name="text">The text to be drawn.</param>
      <param name="font">The font to be used for the text.</param>
      <param name="color">The color to be used for the text.</param>
      <param name="x">The x-coordinate of the location where text drawing is to begin.</param>
      <param name="y">The y-coordinate of the location where text drawing is to begin.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.SetPixel(System.Int32,System.Int32,Microsoft.SPOT.Presentation.Media.Color)">
      <summary>Sets the color for a specified pixel.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <param name="xPos">The x-coordinate of the pixel whose color you want to set.</param>
      <param name="yPos">The y-coordinate of the pixel whose color you want to set.</param>
      <param name="color">The color you want to set for the specified pixel.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.GetPixel(System.Int32,System.Int32)">
      <summary>Retrieves the pixel color at a specified location on the display device.</summary>
      <returns>The pixel color at the specified location.</returns>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <param name="xPos">The x-coordinate of the location where pixel color is to be retrieved.</param>
      <param name="yPos">The y-coordinate of the location where pixel color is to be retrieved.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.SetPixel(System.Int32,System.Int32,System.Boolean)">
      <summary>Turns a specified pixel on or off.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <param name="xPos">The x-coordinate of the pixel you want to set.</param>
      <param name="yPos">The y-coordinate of the pixel you want to set.</param>
      <param name="fSet">The parameter that you can set to true to turn the pixel on, or set to false to turn the pixel off.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.Line(System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Draws a line connecting the two points specified by two coordinate (x,y) pairs.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <param name="x1">The x-coordinate of the first point.</param>
      <param name="y1">The y-coordinate of the first point.</param>
      <param name="x2">The x-coordinate of the second point.</param>
      <param name="y2">The y-coordinate of the second point.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.DrawRectangle(System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Draws a rectangle defined by two coordinate (x,y) pairs.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <param name="x1">The x-coordinate of the upper-left corner of the rectangle.</param>
      <param name="y1">The y-coordinate of the upper-left corner of the rectangle.</param>
      <param name="x2">The x-coordinate of the lower-right corner of the rectangle.</param>
      <param name="y2">The y-coordinate of the lower-right corner of the rectangle.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.DrawText(System.String,System.Int32,System.Int32,Microsoft.SPOT.Font)">
      <summary>Draws text on the display device, using a specified font.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <returns>The width of the text, in pixels.</returns>
      <param name="text">The text to be drawn.</param>
      <param name="xPos">The x-coordinate of the location where text drawing is to begin.</param>
      <param name="yPos">The y-coordinate of the location where text drawing is to begin.</param>
      <param name="font">The font to be used for the text.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.DrawText(System.String,System.Int32,System.Int32,Microsoft.SPOT.Font,System.Single)">
      <summary>Draws text on the display device, using a specified font and kerning.</summary>
      <returns>The width of the text, in pixels.</returns>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <param name="text">The text to be drawn.</param>
      <param name="xPos">The x-coordinate of the location where text drawing is to begin.</param>
      <param name="yPos">The y-coordinate of location where text drawing is to begin.</param>
      <param name="font">The font to be used for the text.</param>
      <param name="kerning">The kerning to be used for the text, in pixels.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.DrawTextInRect(System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.UInt32,Microsoft.SPOT.Font)">
      <summary>Draws text in a specified rectangle.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes</remarks>
      <param name="text">The text to be drawn. This parameter contains the remaining text, or an empty string, if the complete text string did not fit in the specified rectangle.</param>
      <param name="x">The x-coordinate of the upper-left corner of the rectangle.</param>
      <param name="y">The y-coordinate of the upper-left corner of the rectangle.</param>
      <param name="width">The width of the rectangle.</param>
      <param name="height">The height of the rectangle.</param>
      <param name="dtFlags">Flags that specify the format of the text.</param>
      <param name="font">The font to be used for the text.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.DrawTextInRect(System.String@,System.Int32@,System.Int32@,System.Int32,System.Int32,System.Int32,System.Int32,System.UInt32,Microsoft.SPOT.Font)">
      <summary>Draws text in a specified rectangle.</summary>
      <returns>true if all of the specified text was drawn; false if this is not the case and the text parameter contains the remaining text that was not drawn.</returns>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <param name="text">The text to be drawn. This parameter contains the remaining text, or an empty string, if the complete text string did not fit in the specified rectangle.</param>
      <param name="xRelStart">The x-coordinate, relative to the rectangle, at which text drawing is to begin.</param>
      <param name="yRelStart">The y-coordinate, relative to the rectangle, at which text drawing is to begin.</param>
      <param name="x">The x-coordinate of the upper-left corner of the rectangle.</param>
      <param name="y">The y-coordinate of the upper-left corner of the rectangle.</param>
      <param name="width">The width of the rectangle.</param>
      <param name="height">The height of the rectangle.</param>
      <param name="dtFlags">Flags that specify the format of the text.</param>
      <param name="font">The font to be used for the text.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.DrawTextInRect(System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.UInt32,Microsoft.SPOT.Presentation.Media.Color,Microsoft.SPOT.Font)">
      <summary>Draws text in a specified rectangle.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes</remarks>
      <param name="text">The text to be drawn. This parameter contains the remaining text, or an empty string, if the complete text string did not fit in the specified rectangle.</param>
      <param name="x">The x-coordinate of the upper-left corner of the rectangle.</param>
      <param name="y">The y-coordinate of the upper-left corner of the rectangle.</param>
      <param name="width">The width of the rectangle.</param>
      <param name="height">The height of the rectangle.</param>
      <param name="dtFlags">Flags that specify the format of the text.</param>
      <param name="color">The color to be used for the text.</param>
      <param name="font">The font to be used for the text.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.ResetClippingRectangle">
      <summary>Resets a bitmap's clipping region (clipping rectangle) to the entire bitmap.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.BitBlt(System.Int32,System.Int32,System.Int32,System.Int32,Microsoft.SPOT.Bitmap,System.Int32,System.Int32,System.Int32)">
      <summary>Performs a bit-block transfer of the bitmap data corresponding to a rectangle of pixels, transferring the data from a specified source bitmap into the current destination bitmap.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <param name="xDst">The x-coordinate of the upper-left corner of the destination rectangle.</param>
      <param name="yDst">The y-coordinate of the upper-left corner of the destination rectangle.</param>
      <param name="nWidth">The width of the source and destination rectangles.</param>
      <param name="nHeight">The height of the source and destination rectangles.</param>
      <param name="pSrc">The source bitmap.</param>
      <param name="xSrc">The x-coordinate of the upper-left corner of the source rectangle.</param>
      <param name="ySrc">The y-coordinate of the upper-left corner of the source rectangle.</param>
      <param name="dwRop">A raster operation code. This code defines how the bitmap data for the source rectangle is to be combined with the bitmap data for the destination rectangle.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.DrawEllipse(Microsoft.SPOT.Presentation.Media.Color,System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Draws a filled ellipse on the display device.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes</remarks>
      <param name="colorOutline">The outline color.</param>
      <param name="x">The x-coordinate location of the center of the ellipse.</param>
      <param name="y">The y-coordinate location of the center of the ellipse.</param>
      <param name="xRadius">The radius of the ellipse in the x-coordinate direction.</param>
      <param name="yRadius">The radius of the ellipse in the y-coordinate direction.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.DrawImage(System.Int32,System.Int32,Microsoft.SPOT.Bitmap,System.Int32,System.Int32,System.Int32,System.Int32)">
      <summary>Draws a rectangular block of pixels on the display device.</summary>
      <remarks>Passing negative values in the xSrc and ySrc parameters produces undefined results.
      The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <param name="xDst">The x-coordinate location of the upper-left corner of the rectangular area on the display to which the specified pixels are to be copied.</param>
      <param name="yDst">The y-coordinate location of the upper-left corner of the rectangular area on the display to which the specified pixels are to be copied.</param>
      <param name="bitmap">The source bitmap.</param>
      <param name="xSrc">The x-coordinate location of the upper-left corner of the rectangular area in the source bitmap from which the specified pixels are to be copied.</param>
      <param name="ySrc">The y-coordinate location of the upper-left corner of the rectangular area in the source bitmap from which the specified pixels are to be copied.</param>
      <param name="width">The width of the rectangular block of pixels to be copied.</param>
      <param name="height">The height of the rectangular block of pixels to be copied.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.#ctor(System.Int32,System.Int32)">
      <summary>Initializes a new instance of the <see cref="Microsoft.SPOT.Bitmap" /> class to the specified height and width.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <param name="width">Not yet documented.</param>
      <param name="height">Not yet documented.</param>
    </member>
    <member name="M:Microsoft.SPOT.Bitmap.#ctor(System.Byte[],Microsoft.SPOT.Bitmap.BitmapImageType)">
      <summary>Not docummented yet.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
      <param name="imageData">An array of pixel data for the specified image.</param>
      <param name="type">The bitmap type for the specified image.</param>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.MaxWidth">
      <summary>Specifies the maximum width of the display device, in pixels.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.MaxHeight">
      <summary>Specifies the maximum height of the display device, in pixels.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.CenterX">
      <summary>Represents the x-coordinate location of the center of the display device, in pixels.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.CenterY">
      <summary>Represents the y-coordinate location of the center of the display device, in pixels.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.OpacityOpaque">
      <summary>Specifies that the current bitmap is opaque.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.OpacityTransparent">
      <summary>Specifies that the current bitmap is transparent.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.SRCCOPY">
      <summary>Copies the source rectangle directly to the destination rectangle.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.PATINVERT">
      <summary>Inverts the source rectangle.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.DSTINVERT">
      <summary>Inverts the destination rectangle.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.BLACKNESS">
      <summary>Fills the destination rectangle with the color associated with index number 0 in the physical palette.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.WHITENESS">
      <summary>Fills the destination rectangle with the color associated with index number 1 in the physical palette.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.DSTGRAY">
      <summary>Fills the destination rectangle with a gray color.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.DSTLTGRAY">
      <summary>Fills the destination rectangle with a light gray color.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.DSTDKGRAY">
      <summary>Fills the destination rectangle with a dark gray color.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.SINGLEPIXEL">
      <summary>Specifies that a circle should have only a single-pixel border and no fill pattern or color.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.RANDOM">
      <summary>Fills the destination rectangle or circle with a randomly generated pattern.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.DT_None">
      <summary>Specifies that there are no format rules.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.DT_WordWrap">
      <summary>Specifies whether a line of bitmap text automatically wraps words to the beginning of the next line when the line reaches its maximum width.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.DT_TruncateAtBottom">
      <summary>Specifies that if the bitmap text is larger than the space provided, the text is truncated at the bottom.</summary>
      <remarks>You cannot use this field with the <see cref="F:Microsoft.SPOT.Bitmap.DT_Ellipsis" /> flag. Use it only with the Microsoft.SPOT.Bitmap.DrawTextInRect methods.
        The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.DT_Ellipsis">
      <summary>Specifies that the bitmap text is trimmed to the nearest character, and an ellipsis is inserted at the end of each trimmed line.</summary>
      <remarks>You cannot use this field with the <see cref="F:Microsoft.SPOT.Bitmap.DT_TruncateAtBottom" /> flag. Use it only with the Microsoft.SPOT.Bitmap.DrawTextInRect methods. 
       The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.DT_IgnoreHeight">
      <summary>Specifies that if the bitmap text is larger than the space provided, the text is drawn in its full size, rather than being scaled down to fit the value in the Height property.</summary>
      <remarks>Use this field only with the Microsoft.SPOT.Bitmap.DrawTextInRect methods.
        The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.DT_AlignmentLeft">
      <summary>Specifies that text is left-aligned as it flows around a bitmap.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.DT_AlignmentCenter">
      <summary>Specifies that text is center-aligned as it flows around a bitmap.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.DT_AlignmentRight">
      <summary>Specifies that text is right-aligned as it flows around a bitmap.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.DT_AlignmentMask">
      <summary>Specifies that you can use a mask to get or set text alignment around a bitmap.</summary>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.DT_TrimmingNone">
      <summary>Not yet documented.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.DT_TrimmingWordEllipsis">
      <summary>Not yet documented.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.DT_TrimmingCharacterEllipsis">
      <summary>Not yet documented.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.DT_TrimmingMask">
      <summary>Not yet documented.</summary>
    </member>
    <member name="P:Microsoft.SPOT.Bitmap.Width">
      <summary>Gets the width of the current bitmap.</summary>
      <returns>The width of the current bitmap, in pixels.</returns>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="P:Microsoft.SPOT.Bitmap.Height">
      <summary>Gets the height of the current bitmap.</summary>
      <returns>The height of the current bitmap, in pixels.</returns>
      <remarks>The .NET Micro Framework provides the <see cref="Microsoft.SPOT.Bitmap" /> class for backward compatibility with existing applications. However, this class is not supported for new applications, and you should not use it in your .NET Micro Framework programs. Instead, the framework now provides the Windows Presentation Foundation (WPF) in the following namespaces:
        - Microsoft.SPOT.Input
        - Microsoft.SPOT.Presentation
        - Microsoft.SPOT.Presentation.Controls
        - Microsoft.SPOT.Presentation.Media
        - Microsoft.SPOT.Presentation.Shapes
      </remarks>
    </member>
    <member name="T:Microsoft.SPOT.Bitmap.BitmapImageType">
      <summary>Lists the available formats for bitmap images.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.BitmapImageType.TinyCLRBitmap">
      <summary>A bitmap in a format specific to the .NET Micro Framework common language runtine (CLR).</summary>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.BitmapImageType.Gif">
      <summary>A bitmap in GIF format.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.BitmapImageType.Jpeg">
      <summary>A bitmap in JPEG format.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Bitmap.BitmapImageType.Bmp">
      <summary>A bitmap in Windows BMP format.</summary>
    </member>
    <member name="T:Microsoft.SPOT.Presentation.Media.ColorUtility">
      <summary>Provides a collection of methods for working with colors.</summary>      
    </member>
    <member name="M:Microsoft.SPOT.Presentation.Media.ColorUtility.ColorFromRGB(System.Byte,System.Byte,System.Byte)">
      <summary>Builds a <see cref="T:Microsoft.SPOT.Presentation.Media.Color" /> object from red, green, and blue values. </summary>
      <returns>A color with the specified red, green, and blue values.</returns>
      <param name="r">The red value.</param>
      <param name="g">The green value.</param>
      <param name="b">The blue value.</param>
    </member>
    <member name="M:Microsoft.SPOT.Presentation.Media.ColorUtility.GetRValue(Microsoft.SPOT.Presentation.Media.Color)">
      <summary>Extracts a red value from a specified color.</summary>
      <returns>The red value extracted from the specified color.</returns>
      <param name="color">The color from which the red value is to be extracted.</param>
    </member>
    <member name="M:Microsoft.SPOT.Presentation.Media.ColorUtility.GetGValue(Microsoft.SPOT.Presentation.Media.Color)">
      <summary>Extracts a green value from a specified color.</summary>
      <returns>The green value extracted from the specified color.</returns>
      <param name="color">The color from which the green value is to be extracted.</param>
    </member>
    <member name="M:Microsoft.SPOT.Presentation.Media.ColorUtility.GetBValue(Microsoft.SPOT.Presentation.Media.Color)">
      <summary>Extracts a blue value from a specified color.</summary>
      <returns>The blue value extracted from the specified color.</returns>
      <param name="color">The color from which the blue value is to be extracted.</param>
    </member>
    <member name="M:Microsoft.SPOT.Presentation.Media.ColorUtility.#ctor">
      <summary>Not yet documented.</summary>
    </member>
    <member name="T:Microsoft.SPOT.Presentation.Media.Color">
      <summary>Specifies colors for drawing or painting on a hardware display device.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Presentation.Media.Color.Black">
      <summary>Black.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Presentation.Media.Color.White">
      <summary>White.</summary>
    </member>
    <member name="T:Microsoft.SPOT.Font">
      <summary>Defines a particular format for text, including font choice, font size, and style attributes.</summary>
    </member>
    <member name="M:Microsoft.SPOT.Font.CharWidth(System.Char)">
      <summary>Gets the width of the specified character, in pixels.</summary>
      <returns>Not yet documented.</returns>
      <param name="c">Not yet documented.</param>
    </member>
    <member name="M:Microsoft.SPOT.Font.ComputeExtent(System.String,System.Int32@,System.Int32@,System.Int32)">
      <summary>Computes the width, height, and kerning of a specified line of text.</summary>
      <param name="text">The text you want to measure.</param>
      <param name="width">The width of the specified text.</param>
      <param name="height">The height of the specified text.</param>
      <param name="kerning">The spacing between consecutive characters.</param>
    </member>
    <member name="M:Microsoft.SPOT.Font.ComputeTextInRect(System.String,System.Int32@,System.Int32@,System.Int32,System.Int32,System.Int32,System.Int32,System.UInt32)">
      <summary>Computes the size of the rectangular area on the display device needed to render the specified text string.</summary>
      <param name="text">The text you want to render on the display device.</param>
      <param name="renderWidth">The width, in pixels, of the rectangular area needed to render the text.</param>
      <param name="renderHeight">The height, in pixels, of the rectangular area needed to render the text.</param>
      <param name="xRelStart">The x-coordinate of the relative starting point for the text.</param>
      <param name="yRelStart">The y-coordinate of the relative starting point for the text.</param>
      <param name="availableWidth">The maximum width of text that will fit in the defined rectangular area.</param>
      <param name="availableHeight">The maximum height of text that will fit in the defined rectangular area.</param>
      <param name="dtFlags">Flags that specify various text characteristics, such as alignment.</param>
    </member>
    <member name="M:Microsoft.SPOT.Font.ComputeExtent(System.String,System.Int32@,System.Int32@)">
      <summary>Computes the width and height of a specified line of text.</summary>
      <param name="text">The text you want to measure.</param>
      <param name="width">The width of the specified text.</param>
      <param name="height">The height of the specified text.</param>
    </member>
    <member name="M:Microsoft.SPOT.Font.ComputeTextInRect(System.String,System.Int32@,System.Int32@)">
      <summary>Computes the size of the rectangular area on the display device needed to render the specified text string.</summary>
      <param name="text">The text you want to render on the display device.</param>
      <param name="renderWidth">The width, in pixels, of the rectangular area needed to render the text.</param>
      <param name="renderHeight">The height, in pixels, of the rectangular area needed to render the text.</param>
    </member>
    <member name="M:Microsoft.SPOT.Font.ComputeTextInRect(System.String,System.Int32@,System.Int32@,System.Int32)">
      <summary>Computes the size of the rectangular area on the display device needed to render the specified text string.</summary>
      <param name="text">The text you want to render on the display device.</param>
      <param name="renderWidth">The width, in pixels, of the rectangular area needed to render the text.</param>
      <param name="renderHeight">The height, in pixels, of the rectangular area needed to render the text.</param>
      <param name="availableWidth">The maximum width of text that will fit in the defined rectangular area.</param>
    </member>
    <member name="F:Microsoft.SPOT.Font.DefaultKerning">
      <summary>Contains the default kerning for a particular font.</summary>
      <remarks>The kerning controls the amount of space between consecutive characters in a particular font.</remarks>
    </member>
    <member name="P:Microsoft.SPOT.Font.Height">
      <summary>Gets the height of the current font, in pixels.</summary>
      <returns>The height of the current font, in pixels.</returns>
    </member>
    <member name="P:Microsoft.SPOT.Font.AverageWidth">
      <summary>Gets the average width of the characters in the current font, in pixels.</summary>
      <returns>The average width of the characters in the current font, in pixels.</returns>
    </member>
    <member name="P:Microsoft.SPOT.Font.MaxWidth">
      <summary>Gets the width of the widest character in the current font, in pixels.</summary>
      <returns>The width of the widest character in the current font, in pixels.</returns>
    </member>
    <member name="P:Microsoft.SPOT.Font.Ascent">
      <summary>Gets the ascent measurement for the current font, in pixels.</summary>
      <remarks>A font's ascent is the vertical distance between the font baseline and the top of the font area.</remarks>
      <returns>The ascent measurement for the current font, in pixels.</returns>
    </member>
    <member name="P:Microsoft.SPOT.Font.Descent">
      <summary>Gets the descent measurement for the current font, in pixels.</summary>
      <remarks>A font's descent is the vertical distance between the font baseline and the bottom of the font area.</remarks>
      <returns>The descent measurement for the current font, in pixels.</returns>
    </member>
    <member name="P:Microsoft.SPOT.Font.InternalLeading">
      <summary>Gets the internal leading measurement for the current font, in pixels.</summary>
      <returns>The internal leading measurement for the current font, in pixels.</returns>
    </member>
    <member name="P:Microsoft.SPOT.Font.ExternalLeading">
      <summary>Gets the external leading measurement for the current font, in pixels.</summary>
      <returns>The external leading measurement for the current font, in pixels.</returns>
    </member>
    <member name="T:Microsoft.SPOT.Hardware.ScreenMetrics">
      <summary>Contains information about the display device.</summary>
      <remarks>If the hardware device does not contain a display mechanism, the fields in this class are all set to 0 (zero).</remarks>
    </member>
    <member name="M:Microsoft.SPOT.Hardware.ScreenMetrics.GetMetrics">
      <summary>Retrieves a <see cref="T:Microsoft.SPOT.HardwareScreenMetrics" /> object that contains information about the display device. </summary>
      <returns>A <see cref="T:Microsoft.SPOT.HardwareScreenMetrics" /> object that contains information about the display device.</returns>
    </member>
    <member name="F:Microsoft.SPOT.Hardware.ScreenMetrics.Width">
      <summary>Contains the width of the display, in pixels.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Hardware.ScreenMetrics.Height">
      <summary>Contains the height of the display, in pixels.</summary>
    </member>
    <member name="F:Microsoft.SPOT.Hardware.ScreenMetrics.BitsPerPixel">
      <summary>Contains the number of bits per pixel on the display.</summary>
    </member>
  </members>
</doc>
