Home
last modified time | relevance | path

Searched refs:CENTER_ALIGN (Results 1 – 3 of 3) sorted by relevance

/trunk/main/xmerge/java/pexcel/src/main/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/
H A DExtendedFormat.java66 public static final int CENTER_ALIGN = 0x02; field in ExtendedFormat
113 if(align==Format.CENTER_ALIGN) { in ExtendedFormat()
114 fTextAttr[0] |= CENTER_ALIGN; in ExtendedFormat()
243 int mask = LEFT_ALIGN | CENTER_ALIGN | RIGHT_ALIGN; in getAlign()
249 if(masked == CENTER_ALIGN) in getAlign()
250 return Format.CENTER_ALIGN; in getAlign()
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/sxc/
H A DCellStyle.java215 fmt.setAlign(Format.CENTER_ALIGN); in handleAttribute()
388 if (fmt.getAlign()==Format.CENTER_ALIGN) in writeAttributes()
H A DFormat.java38 final public static int CENTER_ALIGN = 0x02; field in Format