Hi, I'd like to do some operations on the new created IEBitmap i.e. draw some symbols to use them later in my application. But I can not access the IEBitmap canvas.
here is the snippet of my code
procedure Tfienv.ietest1Click(Sender: TObject); var iebmp: tiebitmap; begin iebmp := tieBitmap.Create;
// I got av error here - the Canvas property is nil iebmp.Canvas.Brush.Color := clBlack; iebmp.Canvas.Pen.Color := clWhite; end;