CRect::operator LPCRECT
operatorLPCRECT()const;
Remarks
Converts a CRect to an LPCRECT. When you use this function, you don't need the address-of (&) operator. This operator will be automatically used when you pass a CRect object to a function that expects an LPCRECT.
Example
void CYourView::OnInitialUpdate()
{
// 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);
// ... more code here ...
}
CRect Overview | Class Members | Hierarchy Chart
See Also CRect::operator LPRECT