Hi,
I'm porting my prog to C++ XE5 (with new ImageEn release) and
I've noticed that EndShape does not work any more.
Here is the code that worked in BCB 6:
_hobj = PaintView->AddNewObject();
PaintView->ObjKind[_hobj] = iekLINE;
PaintView->ObjBrushStyle[_hobj] = bsSolid;
PaintView->ObjBrushColor[_hobj] = clBlue;
PaintView->ObjEndShape[_hobj] = iesOUTARROW;
In XE5 with new ImageEn release, out arrow is not visible. The object acts as iesNONE was specified.
Are there any new options in current ImageEn release that must be specified in order to make arrow visible?