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};
必要条件
Header: windef.h