CITIZEN Android Label Print SDK — Programming Manual
2.2.28 StopOffset property
Syntax
int StopOffset
Attribute
Read/Write
Description
Specifies the distance between paper sensor and cutter or peeler to change the print stop position.
Note that the initial values are calculated to stop paper at an appropriate position. An insufficient
value truncates the printed label, an exceeded value truncates the next label.
*0.01 inches or 0.1 mm
Setter method
int setStopOffset (int stopOffset)
Returns CLS_SUCCESS (0) on success. See "2.1 Return value" for the error codes.
Getter method
int getStopOffset ()
Returns the set value. If nothing has been set, it returns CLS_PROPERTY_DEFAULT(999999).
Example
int stopOffset;
printer.setStopOffset(240);
stopOffset = printer.getStopOffset();