CDocument::GetNextView

调用此函数将所有文档的视图重复。

virtual CView* GetNextView(
   POSITION& rPosition 
) const;

参数

  • rPosition
    POSITION 值的引用由以前的调用返回到 GetNextViewGetFirstViewPosition 成员函数。此值不能为 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

请参见

参考

CDocument选件类

层次结构图

CDocument::AddView

CDocument::GetFirstViewPosition

CDocument::RemoveView

CDocument::UpdateAllViews