<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>


PANEL Search:

In Graphics Words in TurboForth Kernal

Word Name: PANEL
Type: Standard word
Data Stack Signature: x y xlength ylength --
Return Stack Signature: --
Availability: V1.0  V1.1  V1.2
Description:

Logically defines a rectangular panel starting at y, x extending to ylength and xlength to be scrolled by SCROLL.

Example:

: DELAY ( n -- ) FOR NEXT ;

: TEST ( -- )
  WORDS
  10 10 20 20 PANEL
  20 0 DO
    2 SCROLL  1000 DELAY
  LOOP
;

TEST

Comment:

none

See Also: WRAP  SCROLL 

<< Home | About Forth | About TurboForth | Download | Language Reference | Resources | Tutorials | YouTube >>