CDocument::GetNextView
调用此函数将所有文档的视图重复。
virtual CView* GetNextView(
POSITION& rPosition
) const;
参数
- rPosition
为 POSITION 值的引用由以前的调用返回到 GetNextView 或 GetFirstViewPosition 成员函数。 此值不能为 NULL。
返回值
为 rPosition确定视图的指针。
备注
函数返回 rPosition 确定的视图然后设置 rPosition 到下视图的 POSITION 值列表中的。 如果所检索的视图是列表中的最后,则 rPosition 设置为 NULL。
示例
//To get the first view in the list of views:
// POSITION pos = GetFirstViewPosition();
// CView* pFirstView = GetNextView(pos);
//
// This example uses CDocument::GetFirstViewPosition
// and GetNextView to repaint each view.
// An easier way to accomplish the same result is to call
// UpdateAllViews(NULL);
void CExampleDoc::OnRepaintAllViews()
{
POSITION pos = GetFirstViewPosition();
while (pos != NULL)
{
CView* pView = GetNextView(pos);
pView->UpdateWindow();
}
}
要求
Header: afxwin.h