CGXDaoGrid::CGXDaoGrid
CGXDaoGrid(CWnd* pGridWnd = NULL, CDocument* pGridDoc = NULL, BOOL bIsViewContext = FALSE);
pGridWnd
A pointer to the parent CWnd object for the CGXDaoGrid object.
pGridDoc
A pointer to the document, if any. Otherwise NULL.
bIsViewContext
You should pass TRUE for this parameter if the grid is used in a CView.
Remarks
Constructs a CGXDaoGrid object.
You will only need to call this constructor if you want to attach a CGXDaoGrid object to a CGXGridHandleView or CGXGridHandleWnd.
Example
This example shows 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