Vertical Tab Stops ESC BData Structure ASCII ESC "B" 1 >...16 > NUL set vertical tab stops hex. 1B 42 1 >...16 > 00dec. 27 66 1 >...16 > 0ASCII ESC "B" NUL reset all vertical tab stops hex. 1B 42 00dec. 27 66 0Description By means of this code sequence a maximum of 16 vertical tab stops can be set.For example,CHR$(27);"B";CHR$(1);CHR$(11);CHR$(21);CHR$(0);sets vertical tab stops at lines 1, 11 and 21, line 1 being the first line of the page.Tab stops are set in those positions which are specified by character codes followingESC B. These character codes must be arranged in ascending order.The length of this code sequence varies according to the number of tab stops beingset. Code (hex. 00) is used as a terminator to signal the end of the data string.If any character code with a smaller numeric value than the preceding is among thosecodes, the code with the smaller value is ignored. Vertical tab stops set by thissequence remain effective until code sequence ESC B is received again or formlength is changed by ESC C.A vertical tabulation is executed by the VT control code (hex.0B, dec.11). This code sequence cancels all previous tab stops.For example,CHR$(27);"B";CHR$(0)clears all vertical tab stops.Print Positioning 55