updating oE save_text_image
save_text_image
include console.e namespace console public function save_text_image(text_point top_left, text_point bottom_right)
copies a rectangular block of text out of screen memory.
Parameters:
- top_left : the coordinates, given as a pair, of the upper left corner of the area to save.
- bottom_right : the coordinates, given as a pair, of the lower right corner of the area to save.
Returns:
A sequence, of {character, attribute, character, ...} lists.
Comments:
The returned value is appropriately handled by display_text_image.
This routine reads from the active text page, and only works in text modes.
You might use this function in a text-mode graphical user interface to save a portion of the screen before displaying a drop-down menu, dialog box, alert box, and so on.
Example 1:
-- Top 2 lines are: Hello and World s = save_text_image({1,1}, {2,5}) -- s is something like: {"H-e-l-l-o-", "W-o-r-l-d-"}
See Also:
Not Categorized, Please Help
|