RemoveObject

public bool RemoveObject(const DisplayObject& child);

 

Description

Remove the object from the view.

Example

void DataView_RemoveFolder(GeoCalc.DataView & dataView)

{

DisplayObject thisObject(L"DEGREES", System.Object.AngularUnitType, 100, false);

if (!m_DataView->RemoveObject(thisObject))

{

AfxMessageBox("RemoveObject failed");

}

}