2.2.27 StartOffset property
Syntax
int StartOffset
Attribute
Read/Write
Description
Specifies the distance between paper sensor and print head to change the print starting position.
*0.01 inches or 0.1 mm
Setter method
int setStartOffset(int startOffset)
Make sure to set a valid value since the consistency with the selected measurement unit will
never be checked.
Returns CLS_SUCCESS (0) on success. See "2.1 Return value" for the error codes.
Getter method
int getStartOffset ()
Returns the set value. If nothing has been set, it returns CLS_PROPERTY_DEFAULT(999999).
Example
int startOffset;
printer.setStartOffset(220);
startOffset = printer.getStartOffset();