public bool RemoveObject(const DisplayObject& child);
Remove the object from the view.
void DataView_RemoveFolder(GeoCalc.DataView & dataView)
{
DisplayObject thisObject(L"DEGREES", System.Object.AngularUnitType, 100, false);
if (!m_DataView->RemoveObject(thisObject))
{
AfxMessageBox("RemoveObject failed");
}
}