![Citizen CL-E300 Programming Manual Download Page 32](http://html1.mh-extra.com/html/citizen/cl-e300/cl-e300_programming-manual_2610002032.webp)
CITIZEN Android Label Print SDK
—
Programming Manual
32
2.2.15 FormatAttribute property
Syntax
int FormatAttribute
Attribute
Read/Write
Description
Specifies how to print the area where multiple objects are overlapped.
0: XOR mode. Overlapped area will not be printed.
1: OR mode. Overlapped area will be printed.
Setter method
int setFormatAttribute (int formatAttribute)
Returns CLS_SUCCESS (0) on success. See "
" for the error codes.
Getter method
int getFormatAttribute ()
Returns the set value. If nothing has been set, it returns CLS_PROPERTY_DEFAULT(999999).
Example
int attr;
printer.setFormatAttribute(1);
attr = printer.getFormatAttribute();
Printing Result
XOR
OR