CRect::operator LPCRECT
Dönüştüren bir CRect için bir lpcrect.
operator LPCRECT( ) const throw( );
Notlar
Bu işlevi kullandığınızda, adres, gerekmeyen (&) işleci. Bu işleç geçirdiğinizde, otomatik olarak kullanılacak bir CRect bekler çalışması için nesne bir lpcrect.
Örnek
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;
}
Gereksinimler
Başlık: atltypes.h