Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- FUNCky - <b>name:</b> <b>status() - get status of clipper's various set commands</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
  Name:     status() - get status of Clipper's various set commands
  Usage:    <logical> = status(<number>)
  Params:   integer <number> - the number of the status you want to
            check as defined by the table below:

            Set command    - Number  Set command    - Number
            Alternate      - 1       Exact          - 10
            Bell           - 2       Exclusive      - 11
            Century        - 3       Fixed          - 12
            Confirm        - 4       Insert         - 13
            Console        - 5       Intensity      - 14
            Cursor         - 6       Print          - 15
            Deleted        - 7       Scoreboard     - 16
            Delimiters     - 8       Softseek       - 17
            Escape         - 9       Unique         - 18
                                     Wrap           - 19

  Returns:  Logical .T. if the requested SET COMMAND is set to on,
            .F. if it is set off.

 ---------------------------------- Example ---------------------------------

                 set BELL on
                 ? status(2)
                 * prints .T.

                 set BELL off
                 ? status(2)
                 * prints .F.

                 set SCOREBOARD on
                 ? status(16)
                 * prints .T.

                 set SCOREBOARD (! status(16))
                 * this example reverse the setting


See Also: decimals() default() delimiters() fkey() margin()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson