If I made a figure sample :
local oGraphics := Graphics():New( hDC )
local oPen := Pen():New( 255, 0, 0, 255 , 10 , .T.)
local oBrush2 := Brush():NewSolidBrush( 150, 0, 255, 167 )
oPen:SetInset( )
oGraphics:DrawEllipse( oPen2, oBrush2 , 500, 100, 60, 60 )
then I want clear this figure to create another over ,
sample : oGraphics:DrawRect( oPen2, oBrush2 , 500, 100, 70, 60 )
so how I can erase the first figure ? how I must do ?