Home
last modified time | relevance | path

Searched refs:RIGHT_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.java67 public static final int RIGHT_ALIGN = 0x03; field in ExtendedFormat
117 } else if(align==Format.RIGHT_ALIGN) { in ExtendedFormat()
118 fTextAttr[0] |= RIGHT_ALIGN; in ExtendedFormat()
243 int mask = LEFT_ALIGN | CENTER_ALIGN | RIGHT_ALIGN; in getAlign()
252 if(masked == RIGHT_ALIGN) in getAlign()
253 return Format.RIGHT_ALIGN; in getAlign()
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/converter/xml/sxc/
H A DCellStyle.java217 fmt.setAlign(Format.RIGHT_ALIGN); in handleAttribute()
382 if (fmt.getAlign()==Format.RIGHT_ALIGN) in writeAttributes()
H A DFormat.java37 final public static int RIGHT_ALIGN = 0x01; field in Format