addTextVPosition method
Adds the vertical print start position of text to the command buffer. (in firmware Ver.3.0 and later)
Use this API function by inserting it between addPageBegin to addPageEnd.
Syntax
addTextVPosition(y);
Parameter
y :
( Required parameter, Object type : Number)
Specifies the vertical print start position (in dots).
Specifies an integer from 0 to 65535.
Return value
ePOS-Print Builder Object
Exception
Parameter " ... " is invalid
Example
To set the print position at 120 dots from the top:
<script type="text/javascript" src="epos-print-3.x.x.js"></script>
<script type="text/javascript">
<!--
function buildMessage() {
var builder = new epson.ePOSBuilder();
builder.addPageBegin();
builder.addTextVPosition(120);
builder.addPageEnd();
}
//-->
</script>
Return value
Exception
Chapter 4 ePOS-Print API
Object type
ePOS Builder
Object type
Error
81
4