Equivalent of vcl DrawEdge in FMX

119 Views Asked by At

I'm trying to write an equivalent of FMX UI to replace the VCL.

What's the equivalent of DrawEdge in FMX cross-platform for these functions? (or nearest equivalent, if it cannot be the same)

var lRect: TRect;

DrawEdge(FBitmap.Canvas.Handle, lRect, EDGE_BUMP, BF_RECT or BF_MONO);       
DrawEdge(FBitmap.Canvas.Handle, lRect, EDGE_RAISED, BF_RECT);
DrawEdge(FBitmap.Canvas.Handle, lRect, EDGE_SUNKEN, BF_RECT);
DrawEdge(FBitmap.Canvas.Handle, lRect, EDGE_ETCHED, BF_RECT);

Thanks for any input.

Platform: Delphi 10.4 with FMX

0

There are 0 best solutions below