Writes a character string with repeated attributes to the display.

#define INCL_VIO
#include <os2.h>

PCH       CharStr;    /*  String to be written. */
ULONG     Length;     /*  Length, in bytes, of the character string. */
ULONG     Row;        /*  Starting row position. */
ULONG     Column;     /*  Starting column position. */
PBYTE     Attr;       /*  Attribute to be replicated. */
HVIO      VioHandle;  /*  VIO presentation-space handle. */
APIRET    rc;         /*  Return code. */

rc = VioWrtCharStrAtt(CharStr, Length, Row,
       Column, Attr, VioHandle);


[Back] [Next]