次の方法で共有


CDocument::GetFirstViewPosition

更新 : 2007 年 11 月

ドキュメントに関連付けられたビューのリスト内の最初のビューの位置を取得します。

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

その他の技術情報

CDocument のメンバ