Jump to content

VioReadCellStr (FAPI): Difference between revisions

From EDM2
Ak120 (talk | contribs)
mNo edit summary
Ak120 (talk | contribs)
mNo edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 5: Line 5:


==Parameters==
==Parameters==
;CellStr (PCH) - output : Address of the buffer where the cell string is returned.
;CellStr (PCH) - output: Address of the buffer where the cell string is returned.
;Length (PUSHORT) - input/output : Address of the buffer length in bytes. Length must take into account that each character-attribute(s) entry in the buffer is 2 or 4 bytes. If the length of the buffer is not sufficient, the last entry is not complete.
;Length (PUSHORT) - input/output: Address of the buffer length in bytes. Length must take into account that each character-attribute(s) entry in the buffer is 2 or 4 bytes. If the length of the buffer is not sufficient, the last entry is not complete.
;Row (USHORT) - input : Starting row of the field to read, 0 is the top row.
;Row (USHORT) - input: Starting row of the field to read, 0 is the top row.
;Column (USHORT) - input : Starting column of the field to read, 0 is the leftmost column.
;Column (USHORT) - input: Starting column of the field to read, 0 is the leftmost column.
;VioHandle (HVIO) - input : This must be zero unless the caller is a Presentation Manager application, in which case it must be the value returned by VioGetPs.
;VioHandle (HVIO) - input: This must be zero unless the caller is a Presentation Manager application, in which case it must be the value returned by VioGetPs.


==Return Code==
==Return Code==
Line 15: Line 15:


===PM Considerations===
===PM Considerations===
VioReadCellStr reads a string of character/attributes (or cells) from the Advanced VIO presentation space starting at the specified location.  
VioReadCellStr reads a string of character/attributes (or cells) from the Advanced VIO presentation space starting at the specified location.


==Example Code==
==Bindings==
=== C Binding===
===C===
<PRE>
<PRE>
#define INCL_VIO
#define INCL_VIO
Line 24: Line 24:
USHORT  rc = VioReadCellStr(CellStr, Length, Row, Column, VioHandle);
USHORT  rc = VioReadCellStr(CellStr, Length, Row, Column, VioHandle);


PCH             CellStr;      /* Cell string buffer */
PCH     CellStr;      /* Cell string buffer */
PUSHORT         Length;        /* Length of cell string buffer */
PUSHORT Length;        /* Length of cell string buffer */
USHORT           Row;          /* Starting row location */
USHORT Row;          /* Starting row location */
USHORT           Column;        /* Starting column location */
USHORT Column;        /* Starting column location */
HVIO             VioHandle;    /* Video handle */
HVIO   VioHandle;    /* Video handle */


USHORT           rc;            /* return code */
USHORT rc;            /* return code */
</PRE>
</PRE>


===MASM Binding===
===MASM===
<PRE>
<PRE>
EXTRN  VioReadCellStr:FAR
EXTRN  VioReadCellStr:FAR

Latest revision as of 16:53, 28 February 2020

This call reads a string of character-attribute pairs (cells) from the screen, starting at the specified location.

Syntax

VioReadCellStr (CellStr, Length, Row, Column, VioHandle)

Parameters

CellStr (PCH) - output
Address of the buffer where the cell string is returned.
Length (PUSHORT) - input/output
Address of the buffer length in bytes. Length must take into account that each character-attribute(s) entry in the buffer is 2 or 4 bytes. If the length of the buffer is not sufficient, the last entry is not complete.
Row (USHORT) - input
Starting row of the field to read, 0 is the top row.
Column (USHORT) - input
Starting column of the field to read, 0 is the leftmost column.
VioHandle (HVIO) - input
This must be zero unless the caller is a Presentation Manager application, in which case it must be the value returned by VioGetPs.

Return Code

If a string read comes to the end of the line and is not complete, the string read continues at the beginning of the next line. If the read comes to the end of the screen and is not complete, the read terminates and the length is set to the length of the buffer that was filled.

PM Considerations

VioReadCellStr reads a string of character/attributes (or cells) from the Advanced VIO presentation space starting at the specified location.

Bindings

C

#define INCL_VIO

USHORT  rc = VioReadCellStr(CellStr, Length, Row, Column, VioHandle);

PCH     CellStr;       /* Cell string buffer */
PUSHORT Length;        /* Length of cell string buffer */
USHORT  Row;           /* Starting row location */
USHORT  Column;        /* Starting column location */
HVIO    VioHandle;     /* Video handle */

USHORT  rc;            /* return code */

MASM

EXTRN  VioReadCellStr:FAR
INCL_VIO            EQU 1

PUSH@  OTHER   CellStr       ;Cell string buffer
PUSH@  WORD    Length        ;Length of cell string buffer
PUSH   WORD    Row           ;Starting row location
PUSH   WORD    Column        ;Starting column location
PUSH   WORD    VioHandle     ;Video handle
CALL   VioReadCellStr

Returns WORD

Related Functions

  • VioWrtCellStr