public static final int EMU_PER_PIXEL In Escher absolute distances are specified in English Metric Units (EMUs), occasionally referred to as A units; there are 360000 EMUs per centimeter, 914400 EMUs per inch, 12700 EMUs per point. (在 Escher 中,绝对距离以英制公制单位 (EMU) 指定,有时称为...
val fromColumnWidth = sheet.getColumnWidthInPixels(anchorCol1); var sumWidth = fromColumnWidth - anchorDx1 /Units.EMU_PER_PIXEL;if(sumWidth >= halfWidth)returnanchorCol1;for(var i = anchorCol1 +1; i < anchorCol2; ++i) { sumWidth += sheet.getColumnWidthInPixels(i);if(sumWidth >= h...