- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
public bool AddCellImage(Image Img, BaseAnalysisObjectsClassification AnAttr)
{
bool bRes = false;
for (; ; )
{
AddCell(Img, AnAttr);
bRes = true;
break;
}
return bRes;
}