![](https://pdfstore-manualsonline.prod.a.ki/pdfasset/4/44/44414c02-d064-4424-ae12-8acc58561d02/44414c02-d064-4424-ae12-8acc58561d02-bg96.png)
iVIEW-100 Series user’s Manual, 2006, v2.0 ----- 150
TextOutAt()
Func.: Give (X,Y) to print char text
Syntax:
int TextOutAt(int X, int Y, char *Str);
Header: #include ”mmi100.h”
Description:
X=1~16, Y=1~8 (character)
(1,1) is at the top-left of LCD, (16,8) is at the right-bottom.
Str: string
Note: X position plus string length should not longer than 16+1
Example: Please refer to “UnderLine()” for example.
DrawText()
Func.: Give (X,Y) to print text (unsigned character)
Syntax:
int DrawText(int X, int Y, unsigned char *Text);
Header: #include ”mmi100.h”
Description:
X=1~16, Y=1~8 (character)
(1,1) is at the top-left of LCD, (16,8) is at the right-bottom.
Note: X position plus text length should not longer than 16+1
Example: Please refer to “UnderLine()” for example.
LcdPrintfAt()
Func.: Give (X,Y) to print text
Syntax:
int LcdPrintfAt(int X, int Y, char *FormatStr, ...);
Header: #include ”mmi100.h”
Description:
X=1~16, Y=1~8 (character)
(1,1) is at the top-left of LCD, (16,8) is at the right-bottom.
Note: X position plus text length should not longer than 16+1
Example: Please refer to “UnderLine()” for example.
IntOutAt()
Func.: Give (X,Y) & length to print integer number
Syntax:
int IntOutAt(int X, int Y, int Len, int32 Value );
Header: #include ”mmi100.h”
Description:
X=1~16, Y=1~8 (character)
(1,1) is at the top-left of LCD, (16,8) is at the right-bottom.
Len: integer length
Note: X position plus length should not longer than 16+1
Example: Please refer to “UnderLine()” for example.