インテル® Fortran コンパイラー XE 13.1 ユーザー・リファレンス・ガイド
Graphics Subroutine: Sets the current text position to a specified position relative to the current text window.
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 |