Apache POI ve Aspose.Cells te Split Panes
Contents
[
Hide
]
Aspose.Cells - Bölünmüş Panolar
Aspose.Cells, bir Microsoft Excel dosyasını temsil eden Workbook adında bir sınıf sağlar. Workbook sınıfı, Excel dosyalarını yönetmek için geniş bir yelpazede özellikler ve yöntemler sağlar. Bölünmüş görünüm uygulamak için, Worksheet sınıfının split yöntemini kullanın. Bölünmüş panelleri kaldırmak için, removeSplit yöntemini kullanın.
Java
//Instantiate a new workbook / Open a template file
Workbook book = new Workbook(dataDir + "workbook.xls");
//Set the active cell
book.getWorksheets().get(0).setActiveCell("A20");
//Split the worksheet window
book.getWorksheets().get(0).split();
Apache POI SS - HSSF & XSSF - Split Panes
Bölünmüş paneller işlevselliği, Apache POI SS (HSSF & XSSF) API’yi kullanırken createSplitPane yöntemi ile elde edilebilir.
Java
Workbook wb = new XSSFWorkbook();
Sheet sheet = wb.createSheet("new sheet");
// Create a split with the lower left side being the active quadrant
sheet.createSplitPane(2000, 2000, 0, 0, Sheet.PANE_LOWER_LEFT);
Çalışan Kodu İndir
Örnek Kod İndir
Daha fazla bilgi için Bölünmüş Paneller ziyaret edin.