OUTTEXT (W*32)

Graphics Subroutine: In text or graphics mode, sends a string of text to the screen, including any trailing blanks.

Module

USE IFQWIN

構文

CALL OUTTEXT (text)

text

(Input) Character*(*). String to be displayed.

Text output begins at the current text position in the color set with SETTEXTCOLORRGB or SETTEXTCOLOR. No formatting is provided. After it outputs the text, OUTTEXT updates the current text position.

To output text using special fonts, you must use the OUTGTEXT subroutine.

Compatibility

STANDARD GRAPHICS QUICKWIN GRAPHICS LIB

 USE IFQWIN
 INTEGER(2) oldcolor
 TYPE (rccoord) rc

 CALL CLEARSCREEN($GCLEARSCREEN)
 CALL SETTEXTPOSITION (INT2(1), INT2(5), rc)
 oldcolor = SETTEXTCOLOR(INT2(4))
 CALL OUTTEXT ('Hello, everyone')
 END

関連情報


このヘルプトピックについてのフィードバックを送信

© 1996-2011 Intel Corporation. 無断での引用、転載を禁じます。