RECT 構造体
RECT 構造体は、四角形の左上隅および右下隅の座標を定義します。
typedef struct tagRECT {
LONG left;
LONG top;
LONG right;
LONG bottom;
} RECT;
メンバー
left
四角形の左上隅の X 座標を指定します。top
四角形の左上隅の Y 座標を指定します。right
四角形の右下隅の X 座標を指定します。bottom
四角形の右下隅の Y 座標を指定します。
使用例
//Alternate ways to intialize a RECT structure:
RECT rctA;
rctA.left = 20;
rctA.top = 30;
rctA.right = 180;
rctA.bottom = 230;
RECT rctB = {20,30,180,230};
必要条件
ヘッダー: windef.h