本文整理汇总了Java中jxl.write.WritableCellFormat.setOrientation方法的典型用法代码示例。如果您正苦于以下问题:Java WritableCellFormat.setOrientation方法的具体用法?Java WritableCellFormat.setOrientation怎么用?Java WritableCellFormat.setOrientation使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jxl.write.WritableCellFormat
的用法示例。
在下文中一共展示了WritableCellFormat.setOrientation方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getOrientation
import jxl.write.WritableCellFormat; //导入方法依赖的package包/类
public static WritableCellFormat getOrientation(int stepValue, WritableCellFormat cellFormat) throws WriteException
{
if(stepValue!=ExcelOutputMeta.FONT_ORIENTATION_HORIZONTAL)
{
switch(stepValue)
{
case ExcelOutputMeta.FONT_ORIENTATION_MINUS_45:
cellFormat.setOrientation(jxl.format.Orientation.MINUS_45);
break;
case ExcelOutputMeta.FONT_ORIENTATION_MINUS_90:
cellFormat.setOrientation(jxl.format.Orientation.MINUS_90);
break;
case ExcelOutputMeta.FONT_ORIENTATION_PLUS_45:
cellFormat.setOrientation(jxl.format.Orientation.PLUS_45);
break;
case ExcelOutputMeta.FONT_ORIENTATION_PLUS_90:
cellFormat.setOrientation(jxl.format.Orientation.PLUS_90);
break;
case ExcelOutputMeta.FONT_ORIENTATION_STACKED:
cellFormat.setOrientation(jxl.format.Orientation.STACKED);
break;
case ExcelOutputMeta.FONT_ORIENTATION_VERTICAL:
cellFormat.setOrientation(jxl.format.Orientation.VERTICAL);
break;
default: break;
}
}
return cellFormat;
}
示例2: getOrientation
import jxl.write.WritableCellFormat; //导入方法依赖的package包/类
public static WritableCellFormat getOrientation( int stepValue, WritableCellFormat cellFormat ) throws WriteException {
if ( stepValue != ExcelOutputMeta.FONT_ORIENTATION_HORIZONTAL ) {
switch ( stepValue ) {
case ExcelOutputMeta.FONT_ORIENTATION_MINUS_45:
cellFormat.setOrientation( jxl.format.Orientation.MINUS_45 );
break;
case ExcelOutputMeta.FONT_ORIENTATION_MINUS_90:
cellFormat.setOrientation( jxl.format.Orientation.MINUS_90 );
break;
case ExcelOutputMeta.FONT_ORIENTATION_PLUS_45:
cellFormat.setOrientation( jxl.format.Orientation.PLUS_45 );
break;
case ExcelOutputMeta.FONT_ORIENTATION_PLUS_90:
cellFormat.setOrientation( jxl.format.Orientation.PLUS_90 );
break;
case ExcelOutputMeta.FONT_ORIENTATION_STACKED:
cellFormat.setOrientation( jxl.format.Orientation.STACKED );
break;
case ExcelOutputMeta.FONT_ORIENTATION_VERTICAL:
cellFormat.setOrientation( jxl.format.Orientation.VERTICAL );
break;
default:
break;
}
}
return cellFormat;
}
示例3: textVertical
import jxl.write.WritableCellFormat; //导入方法依赖的package包/类
private WritableCell textVertical(WritableCell cell) throws WriteException {
WritableCellFormat format = new WritableCellFormat(cell.getCellFormat());
format.setOrientation(Orientation.PLUS_90);
cell.setCellFormat(format);
return cell;
}
示例4: setParam
import jxl.write.WritableCellFormat; //导入方法依赖的package包/类
private WritableCellFormat setParam(WritableCellFormat wcf, int map) throws WriteException {
if ( (map&CENTRE)!=0 ) wcf.setAlignment(Alignment.CENTRE);
if ( (map&RIGHT)!=0 ) wcf.setAlignment(Alignment.RIGHT);
if ( (map&LEFT)!=0 ) wcf.setAlignment(Alignment.LEFT);
if ( (map&VCENTRE)!=0 ) wcf.setVerticalAlignment(VerticalAlignment.CENTRE);
if ( (map&B_TOP_MED)!=0 ) wcf.setBorder(Border.TOP, BorderLineStyle.MEDIUM);
if ( (map&B_BOTTOM_MED)!=0 ) wcf.setBorder(Border.BOTTOM, BorderLineStyle.MEDIUM);
if ( (map&B_LEFT_MED)!=0 ) wcf.setBorder(Border.LEFT, BorderLineStyle.MEDIUM);
if ( (map&B_RIGHT_MED)!=0 ) wcf.setBorder(Border.RIGHT, BorderLineStyle.MEDIUM);
if ( (map&B_ALL_MED)!=0 ) {
wcf.setBorder(Border.RIGHT, BorderLineStyle.MEDIUM);
wcf.setBorder(Border.LEFT, BorderLineStyle.MEDIUM);
wcf.setBorder(Border.TOP, BorderLineStyle.MEDIUM);
wcf.setBorder(Border.BOTTOM, BorderLineStyle.MEDIUM);
}
if ( (map&B_TOP_LOW)!=0 ) wcf.setBorder(Border.TOP, BorderLineStyle.THIN);
if ( (map&B_BOTTOM_LOW)!=0 ) wcf.setBorder(Border.BOTTOM, BorderLineStyle.THIN);
if ( (map&B_LEFT_LOW)!=0 ) wcf.setBorder(Border.LEFT, BorderLineStyle.THIN);
if ( (map&B_RIGHT_LOW)!=0 ) wcf.setBorder(Border.RIGHT, BorderLineStyle.THIN);
if ( (map&B_ALL_LOW)!=0 ) {
wcf.setBorder(Border.RIGHT, BorderLineStyle.THIN);
wcf.setBorder(Border.LEFT, BorderLineStyle.THIN);
wcf.setBorder(Border.TOP, BorderLineStyle.THIN);
wcf.setBorder(Border.BOTTOM, BorderLineStyle.THIN);
}
if ( (map&GRAY_25)!=0 ) wcf.setBackground(Colour.GRAY_25);
if ( (map&GREEN)!=0 ) wcf.setBackground(Colour.LIGHT_GREEN);
if ( (map&BLACK)!=0 ) wcf.setBackground(Colour.BLACK);
if ( (map&YELLOW)!=0 ) wcf.setBackground(Colour.YELLOW);
if ( (map&RED)!=0 ) wcf.setBackground(Colour.RED);
if ( (map&WRAP)!=0 ) wcf.setWrap(true);
if ( (map&DIAG45)!=0 ) wcf.setOrientation(Orientation.PLUS_45);
return wcf;
}