Render graphic onto canvas at rectangle.
procedure Draw(ACanvas: TCanvas; const Rect: TRect); virtual; abstract;
virtual __fastcall Draw(TCanvas ACanvas, const TRect Rect) = 0;
TCanvas.Draw calls this function to render the graphic onto its canvas at the coordinates specified by the Rect parameter. Descendants of TGraphic should override this function with a specific rendering implementation.
TCanvas
Draw
DrawTransparent