FillScreenArea

Fills the screen area with the specified character.

Library:LibC
Classification:NetWare OS
Service:Screen Support

Syntax

  #include <screen.h> 
   
  int FillScreenArea (
     scr_t      scrID,
     uint32_t   line,
     uint32_t   col,
     uint32_t   height,
     uint32_t   width,
     char       character,
     uint8_t    attr);
  

Parameters

scrID

(IN) Specifies the screen.

line

(IN) Specifies the position on the screen by specifying a line number.

col

(IN) Specifies the position on the screen by specifying a column number.

height

(IN) Specifies the height of the area, in increments of lines.

width

(IN) Specifies the width of the area, in increments of columns.

character

(IN) Specifies the character to use to fill the area.

attr

(IN) Specifies an attribute for the fill area.

Return Values

If successful, returns 0.

See Also

FillScreenAreaAttribute