次の方法で共有


CDocument::GetFirstViewPosition

ドキュメントに関連付けられているビューの一覧の最初のビューの位置を取得するには、この関数を呼び出します。

virtual POSITION GetFirstViewPosition( ) const;

戻り値

GetNextView のメンバー関数のイテレーションに使用できる POSITION の値。

使用例

//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::GetNextView