Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- TSDWIN: Clipper 5.0 Interface Library - Norton Guide http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]

 tw_ASay( wT, wL, aray, attr1, attr2 )
 ----------------------------------------------------------------------------
     Display an array of strings at a given screen location with
     optional embedded colours. The strings are displayed on successive
     screen lines. The programmer MUST ensure output remains in bounds.
     This function uses direct screen writes and therefore will not obey
     Clipper's DISPBEGIN(), DISPEND() sequence.

       Arguments:

     wT,wL - 'N' Screen coordinates at which to begin the display. The
                 first array element is displayed at ( wT, wL ), the
                 next at ( wT + 1, wL ) etc.

     aray  - 'A' Array of strings to display. The strings may include
                 the '..' delimiters which signal display in the
                 secondary attribute, attr2.

     attr1 - 'N' Primary display colour attribute. Correct numbers may
                 be found with a return from twVAttr( cColour ).

     attr2 - 'N' Secondary display colour attribute. Correct numbers
                 may be found with a return from twVAttr( cColour ).
                 This parameter MUST be given with tw_ASay(), even if
                 it is the same as attr1.

       Return:

     None.

       Example:

     tw_ASay( 3, 4, {"now .is the. time",;
                     "for all .good. men",;
                     "to switch to .Clipper.." },;
                     twVAttr( "w+/b" ), twVAttr( "gr+/r" ))

See Also: tw_Say() tw_Say2() twTextMsg()

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