2.2.19 FeedSpeed property
Syntax
int FeedSpeed
Attribute
Read/Write
Description
Sets the feed speed.
See "3.3.Predefined Constants", No.21 for available value.
*Initial and maximum value vary depending on the printer model.
Setter method
int setFeedSpeed (int feedSpeed)
Returns CLS_SUCCESS (0) on success. See "2.1 Return value" for the error codes.
Getter method
int getFeedSpeed ()
Returns the set value. If nothing has been set, it returns CLS_PROPERTY_DEFAULT(999999).
Example
int feedSpeed;
printer.setFeedSpeed(LabelConst.CLS_SPEEDSETTING_W);
feedSpeed = printer.getFeedSpeed();