[]
        
(Showing Draft Content)

修改表格布局

GcExcel Java 为用户提供了根据自己的选择修改表布局的能力。

表布局模式使用户能够将组的一个区域划分为若干行和列,然后通过指定行和列的索引和跨度值将控件放置到单元格中。此功能类似于在HTML中创建表时使用的功能。

要在GcExcel Java中修改表布局,请参阅以下示例代码。

ITable table = worksheet.getTables().add(worksheet.getRange("A1:B2"));

// Show table header row.
table.setShowHeaders(true);

// To make "first row stripe" and "second row stripe" table style element's
// style effective.
table.setShowTableStyleRowStripes(false);

// Hide auto filter drop down button.
table.setShowAutoFilterDropDown(false);

// To make "first column" table style element's style effective.
table.setShowTableStyleFirstColumn(true);

// Show table total row.
table.setShowTotals(true);

// To make "last column" table style element's style effective.
table.setShowTableStyleLastColumn(true);

// To make "first column stripe" and "second column stripe" table style
// element's style effective.
table.setShowTableStyleColumnStripes(true);

// Unfilter table column filters, and hide auto filter drop down button.
table.setShowAutoFilter(false);