Intel® Fortran Compiler Classic and Intel® Fortran Compiler Developer Guide and Reference

ID 767251
Date 9/08/2022
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

SETTEXTPOSITION

Graphics Subroutine: Sets the current text position to a specified position relative to the current text window. This routine is only available for Windows.

Module

USE IFQWIN

CALL SETTEXTPOSITION (row,column,t)

row

(Input) INTEGER(2). New text row position.

column

(Input) INTEGER(2). New text column position.

t

(Output) Derived type rccoord. Previous text position. The derived type rccoordis defined in IFQWIN.F90 as follows:

 TYPE rccoord
   INTEGER(2) row ! Row coordinate
   INTEGER(2) col ! Column coordinate
 END TYPE rccoord

Subsequent text output with the OUTTEXT function (as well as standard console I/O statements, such as PRINT and WRITE) begins at the point (row, column).

Example
 USE IFQWIN
 TYPE (rccoord) curpos

 WRITE(*,*) "Original text position"
 CALL SETTEXTPOSITION (INT2(6), INT2(5), curpos)
 WRITE (*,*) 'New text position'
 END