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::PtVisible
CDC                                         Up Contents Index Back
──Microsoft Foundation Classes──────────────────────────────────────────────
 
  BOOL PtVisible( int x, int y ) const;
  BOOL PtVisible( POINT point ) const;
 
  Parameter   Description
 
  <x>         Specifies the logical x-coordinate of the point.
 
  <y>         Specifies the logical y-coordinate of the point.
 
  <point>     Specifies the point to check in logical coordinates. You can
              pass either a POINT structure or a CPoint object for
              this parameter.
 
  Remarks
 
  Specifies whether the given point is within the clipping region of the
  device context.
 
  Return Value
 
  TRUE if the specified point is within the clipping region; otherwise
  FALSE.
 
  See Also
 
  CPoint, ::PtVisible
 
 
                                     -♦-