Results 1 to 3 of 3

Thread: How do I get the coordinates of a TBox?

  1. #1
    Join Date
    Oct 2012
    Location
    Porto, Portugal
    Posts
    218
    Mentioned
    0 Post(s)
    Quoted
    42 Post(s)

    Question How do I get the coordinates of a TBox?

    So I want to know the X1, X2, Y1 and Y2 of a TBox. How do I get them?

  2. #2
    Join Date
    Feb 2006
    Posts
    3,044
    Mentioned
    4 Post(s)
    Quoted
    21 Post(s)

    Default

    Quote Originally Posted by Nirvana View Post
    So I want to know the X1, X2, Y1 and Y2 of a TBox. How do I get them?
    Simba Code:
    var
      Box :TBox;

    begin
      WriteLn(Box.X1)
    end.

    and so on..

    ~Home

  3. #3
    Join Date
    Oct 2012
    Location
    Porto, Portugal
    Posts
    218
    Mentioned
    0 Post(s)
    Quoted
    42 Post(s)

    Default

    Quote Originally Posted by Home View Post
    Simba Code:
    var
      Box :TBox;

    begin
      WriteLn(Box.X1)
    end.

    and so on..

    ~Home
    I have done that before but it didn't work. For some reason it worked now. Thanks

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •