Announcement

Collapse
No announcement yet.

Reading LPR coordinates

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Davide Vecchi
    replied
    Uh oh... Now that i read the reply i see that it simply was in the Reference Guide index... under the entry "Last Point Referenced".. Thanks!

    ------------------

    Leave a comment:


  • Lance Edmonds
    replied
    Check out the POINT function... it has two modes of operation - getting a color attribute for a given coordinate, and retrieving the current physical and world coordinates:
    Code:
    ' Get the physical LPR coordinates
    x& = POINT(0)
    y& = POINT(1)
     
    ' Get the world LPR coordinates
    x& = POINT(2)
    y& = POINT(3)

    ------------------
    Lance
    PowerBASIC Support
    mailto:[email protected][email protected]</A>

    Leave a comment:


  • Davide Vecchi
    started a topic Reading LPR coordinates

    Reading LPR coordinates

    I’ m looking for a way to read the x, y coordinates of the Last Point Referenced by the DRAW statement in SCREEN 12.

    ------------------
Working...
X