WritableSheet.setRowView( int i, int height); |
//作用是指定第i+1行的高度,比如: |
//将第一行的高度设为200 |
sheet.setRowView( 0 , 200 ); |
WritableSheet.setColumnView( int i, int width); |
//作用是指定第i+1列的宽度,比如: |
//将第一列的宽度设为30 |
sheet.setColumnView( 0 , 30 ); //源代码片段来自云代码http://yuncode.net |
|