Microsoft Foundation Classes (mfc.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
CDC::DrawIcon
CDC                                         Up Contents Index Back
──Microsoft Foundation Classes──────────────────────────────────────────────
 
  BOOL DrawIcon( int x, int y, HICON hIcon );
  BOOL DrawIcon( POINT point, HICON hIcon );
 
  Parameter   Description
 
  <x>         Specifies the logical x-coordinate of the upper-left corner
              of the icon.
 
  <y>         Specifies the logical y-coordinate of the upper-left corner
              of the icon.
 
  <hIcon>     Identifies the handle of the icon to be drawn.
 
  <point>     Specifies the logical x- and y-coordinates of the upper-left
              corner of the icon. You can pass a POINT structure or a
              CPoint object for this parameter.
 
  Remarks
 
  Draws an icon on the device represented by the current CDC object. The
  function places the icon's upper-left corner at the location specified
  by <x> and <y>. The location is subject to the current mapping mode of
  the device context.
 
  The icon resource must have been previously loaded by using the
  functions CWinApp::LoadIcon, CWinApp::LoadStandardIcon, or
  CWinApp::LoadOEMIcon. The MM_TEXT mapping mode must be selected prior to
  using this function.
 
  Return Value
 
  TRUE if the function is successful; otherwise FALSE.
 
  See Also
 
  CWinApp::LoadIcon, CWinApp::LoadStandardIcon,
  CWinApp::LoadOEMIcon, ::DrawIcon
 
 
                                     -♦-