# C1.Framework.Drawing.Gdi.DeviceContexts.DeviceContext.GetPixel

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="C1_Framework_Drawing_Gdi_DeviceContexts_DeviceContext_GetPixel_" data-uid="C1.Framework.Drawing.Gdi.DeviceContexts.DeviceContext.GetPixel*">GetPixel Method
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="C1_Framework_Drawing_Gdi_DeviceContexts_DeviceContext_GetPixel_" data-uid="C1.Framework.Drawing.Gdi.DeviceContexts.DeviceContext.GetPixel*"></a>
<h4 id="C1_Framework_Drawing_Gdi_DeviceContexts_DeviceContext_GetPixel_System_Drawing_Point_" data-uid="C1.Framework.Drawing.Gdi.DeviceContexts.DeviceContext.GetPixel(System.Drawing.Point)">GetPixel(Point)</h4>
<div class="markdown level1 summary"><p>retrieves the red, green, blue (RGB) color value of the pixel at the specified coordinates.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public virtual Color GetPixel(Point point)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Overridable Function GetPixel(point As Point) As Color</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.point">Point</a></td>
      <td><span class="parametername">point</span></td>
      <td><p>Specifies the coordinate, in logical units, of the pixel to be examined.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.color">Color</a></td>
      <td><p>The return value is the RGB value of the pixel. If the pixel is outside of the current clipping region,
the return value is Color.Empty.</p>
</td>
    </tr>
  </tbody>
</table>
</div>
