Udostępnij za pośrednictwem


CRect::operator LPCRECT

Konwertuje CRect do LPCRECT.

operator LPCRECT( ) const throw( );

Uwagi

Gdy funkcja ta nie jest potrzebny adres z (&) operatora.Operator ten zostanie automatycznie zastosowana po przesunięciu CRect obiektu do funkcji, która oczekuje LPCRECT.

Przykład

BOOL CMyDlg::OnInitDialog()
{
   CDialog::OnInitDialog();

   // CWnd::GetWindowRect() takes a LPRECT, but we can
   // simply pass our CRect object because of the LPRECT
   // cast operator in the CRect class.

   CRect rect;
   GetWindowRect(rect);

   // Similarly, CWnd::MoveWindow() takes a LPCRECT but
   // the LPCRECT cast operator is used implicitly:

   MoveWindow(rect, FALSE);

   return TRUE;
}

Wymagania

Nagłówek: atltypes.h

Zobacz też

Informacje

Klasa CRect

Wykres hierarchii

CRect::operator LPRECT