Point Yapısı ve CPoint Sınıfı
CPoint sınıfı MFC içerisinde kullanılan utility bir sınıftır. Pencere mekanizmasıyla bir ilgisi yoktur. Bir noktayı temsil eder. CPoint sınıfı POINT yapısından türetilmiştir.
typedef struct tagPOINT {
LONG x;
LONG y;
} POINT;
class ...
DEVAMI...>>