3

我正在将 CSV 文件中的数据输入到 OpenOffice 电子表格中。

此代码在电子表格中获取新工作表:

Public Spreadsheet getSpreadsheet(int sheetIndex, XComponent xComp) 
{ 
  XSpreadsheet xSheets = ((XSpreadsheetDocument)xComp).getSheets();
  XIndexAccess xSheetIA = (XIndexAccess)xSheets;
  XSpreadsheet XSheet = (XSpreadsheet)xSheetsA.getByIndex(sheetIndex).Value; 
  return XSheet;
}

然后,我有一种方法,可以一次将一个列表输入到一个单元格区域中。我希望能够自动设置这些单元格的列大小。这就像

string final DataCell; 
Xspreadsheet newSheet = getSpreadsheet(sheetIndex, xComp);
int numberOfRecords = ( int numberOfColumns * int numberOfRows); 
for(cellNumber = 0; cellNumber < numberOfrecords; cellNumber++)
{
  XCell tableData = newSheet.getCellbyPosition(columnValue, rowValue);
  ((XText)tableData).setString(finalDataCell);
  column Value++; 
  if(columnValue > = numberOfColumns)
  {
    rowVal++ column = 0; 
  } 
}

谷歌搜索后,我发现了这个功能:

columns.OptimalWidth = Truehttp://forum.openoffice.org/en/forum/viewtopic.php?f=20&t=31292

但我不确定如何使用它。任何人都可以进一步解释这一点或想出另一种方法来让细胞自动适应吗?

4

2 回答 2

5

我知道代码中的注释是西班牙语的,但代码是英语的。我通过谷歌翻译运行评论,所以现在它们是英文的。我从这里复制了它:

//Auto Enlarge col width 
private void largeurAuto(string NomCol) 
{ 
XCellRange Range = null; 
Range = Sheet.getCellRangeByName(NomCol + "1"); //Recover the range, a cell is 

XColumnRowRange RCol = (XColumnRowRange)Range; //Creates a collar ranks 
XTableColumns LCol = RCol.getColumns(); // Retrieves the list of passes
uno.Any Col = LCol.getByIndex(0); //Extract the first Col

XPropertySet xPropSet = (XPropertySet)Col.Value; 
xPropSet.setPropertyValue("OptimalWidth", new one.Any((bool)true)); 
}

这是做什么的:首先它获取范围名称,然后获取第一列。但是,真正的代码是使用 XpropertySet,这里解释得很好。

于 2013-01-13T20:45:20.027 回答
0
   public void optimalWidth(XSpreadsheet newSheet)
        {
        // gets the used range of the sheet
            XSheetCellCursor XCursor = newSheet.createCursor();
            XUsedAreaCursor xUsedCursor = (XUsedAreaCursor)XCursor;
            xUsedCursor.gotoStartOfUsedArea(true);
            xUsedCursor.gotoEndOfUsedArea(true); 

            XCellRangeAddressable nomCol = (XCellRangeAddressable)xUsedCursor;


            XColumnRowRange RCol = (XColumnRowRange)nomCol;
            XTableColumns LCol = RCol.getColumns();
       // loops round all of the columns
            for (int i = 0; i < nomCol.getRangeAddress().EndColumn;i++) 
            {
            XPropertySet xPropSet = (XPropertySet)LCol.getByIndex(i).Value; 
            xPropSet.setPropertyValue("OptimalWidth", new uno.Any(true));
            }
        }
于 2013-01-14T10:56:19.563 回答