|
//Create some object CTestClass* pDO = new CTestClass(); //Add to the end of the grid Dapfor::GUI::HITEM handle = m_Grid.Add(pDO); //Add a new object as a child of the previous added item. CTestClass* pDO1 = new CTestClass(); m_Grid.Add(pDO1, handle); //Add other object as a child of the first row. The new row will be added to the beginning. CTestClass* pDO2 = new CTestClass(); m_Grid.Add(pDO2, handle, Dapfor::GUI::GI_FIRST); //'Freeze' the row. CTestClass* pDO3 = new CTestClass(); m_Grid.Add(pDO3, Dapfor::GUI::GI_FIXED_ROOT);
| Copyright Dapfor 2007-2009 | Generated on Sat Jan 30 15:01:23 2010 for MFCGrid by 1.5.5 |