次の方法で共有


CDocument::GetNextView

更新 : 2007 年 11 月

ドキュメントのすべてのビューを反復処理します。

virtual CView* GetNextView(
   POSITION& rPosition 
) const;

パラメータ

  • rPosition
    直前の GetNextView、または GetFirstViewPosition メンバ関数で返された POSITION 値の参照。NULL を指定することはできません。

戻り値

rPosition で識別されるビューへのポインタ。

解説

この関数は、rPosition で識別されるビューを返し、リストの次のビューの POSITION 値を rPosition に設定します。リスト内の最後のビューを取得すると、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();
   }   
}

必要条件

ヘッダー : afxwin.h

参照

参照

CDocument クラス

階層図

CDocument::AddView

CDocument::GetFirstViewPosition

CDocument::RemoveView

CDocument::UpdateAllViews

その他の技術情報

CDocument のメンバ