CListCtrl::GetNumberOfWorkAreas
检索操作范围的当前列表视图控件的。
UINT GetNumberOfWorkAreas( ) const;
返回值
不使用此时。
备注
此成员函数实现Win32宏,ListView_GetNumberOfWorkAreas的行为,如 Windows SDK所述。
示例
UINT i, uCount = m_myListCtrl.GetNumberOfWorkAreas();
LPRECT lpRects = (LPRECT) malloc(uCount*sizeof(RECT));
if (lpRects != NULL)
{
// Dump all of the work area dimensions.
m_myListCtrl.GetWorkAreas(uCount, lpRects);
for (i=0; i < uCount; i++)
{
TRACE(_T("Work area %d; left = %d, top = %d, right = %d, ")
_T("bottom = %d\r\n"),
i, lpRects[i].left, lpRects[i].top, lpRects[i].right,
lpRects[i].bottom);
}
free(lpRects);
}
else
{
TRACE(_T("Couldn't allocate enough memory!"));
}
要求
Header: afxcmn.h