System.Types.PtInRect

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

function PtInRect(const Rect: TRect; const P: TPoint): Boolean;
function PtInRect(const Rect: TRectF; const P: TPointF): Boolean;

C++

extern DELPHI_PACKAGE bool __fastcall PtInRect(const TRect &Rect, const TPoint &P)/* overload */;

プロパティ

種類 可視性 ソース ユニット
function public
System.Types.pas
System.Types.hpp
System.Types System.Types


説明

指定した四角形の内部に指定した点があるかどうかを示します。

PtInRect は、点 P が四角形 Rect の内部にある場合 True を、P が Rect 内でなかった場合には False を返します。

PtInRect は、四角形が負数の幅または高さを持っている場合には、点がその四角形の内部かどうか確認しません。点が左辺または上辺の上にある場合には、四角形内部と見なされ、右辺または下辺の場合には見なされません。

関連項目

コード サンプル