<< Return to Main Index

< Return to Class Index

CGXGridCore::CGXGridCore

CGXGridCore(CWnd* pGridWnd = NULL, CDocument* pGridDoc = NULL, BOOL bIsViewContext = FALSE);

pGridWnd

A pointer to the parent CWnd object for the CGXGridCore object.

pGridDoc

A pointer to the document, if any. Otherwise NULL.

bIsViewContextYou

hould pass TRUE for this parameter if the grid is used in a CView.

Remarks

Constructs a CGXGridCore object.

You will only need to call this constructor if you want to attach a CGXGridCore object to a CGXGridHandleView or CGXGridHandleWnd.

Example

This example shows you how you can attach a CGXBrowserGrid (derived from CGXGridCore) to CGXGridHandleView:

void CMyGridView::OnInitialUpdate( )
{
   AttachGrid( new CGXBrowserGrid(this, GetDocument( ), TRUE) );

   CGXGridHandleView::OnInitialUpdate( );

   GetGrid( )->SetRowCount(10);
   GetGrid( )->SetColCount(10);

   ...
}

See Also

CGXGridHandleView CGXGridHandleWnd

CGXGridCore

Class Overview | Class Members