Home
last modified time | relevance | path

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

/AOO41X/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/
H A DRowStyle.java34 import org.openoffice.xmerge.util.TwipsConverter;
140 height = TwipsConverter.cm2twips(heightCM); in parseRowHeight()
143 height = TwipsConverter.inches2twips(heightInch); in parseRowHeight()
268 String height = TwipsConverter.twips2cm(rowHeight) + "cm"; in writeAttributes()
H A DColumnStyle.java34 import org.openoffice.xmerge.util.TwipsConverter;
141 width = TwipsConverter.cm2twips(widthCM); in parseColWidth()
144 width = TwipsConverter.inches2twips(widthInch); in parseColWidth()
268 String width = TwipsConverter.twips2cm(colWidth) + "cm"; in writeAttributes()
/AOO41X/main/xmerge/source/xmerge/java/org/openoffice/xmerge/util/
H A DTwipsConverter.java33 public class TwipsConverter { class