CDocument::GetFirstViewPosition
Chame essa função para obter a posição da primeira exibição na lista de modos de exibição associada ao documento.
virtual POSITION GetFirstViewPosition( ) const;
Valor de retorno
A POSIÇÃO valor que pode ser usado para interação com o GetNextViewfunção de membro .
Exemplo
//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();
}
}
Requisitos
Cabeçalho: afxwin.h