ERASE — Erase Area
Plain English
Erases (clears to white) the specified rectangular area in the image buffer. Anything previously drawn in that area is removed.
When to use
When you need to clear a specific region of the label without clearing the entire buffer.
Syntax
ERASE x,y,width,height
Parameters
| Parameter | Description |
|---|---|
x | Left edge X coordinate in dots |
y | Top edge Y coordinate in dots |
width | Width of the area to erase in dots |
height | Height of the area to erase in dots |
Example
ERASE 100,100,200,50
Clear a 200x50 dot area at position (100,100)