You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
633 B
21 lines
633 B
package com.fr.design.fit; |
|
|
|
import com.fr.form.fit.NewUIModeRotationDraw; |
|
import com.fr.grid.CellElementPainter; |
|
import com.fr.report.cell.TemplateCellElement; |
|
import com.fr.report.core.PaintUtils; |
|
import com.fr.report.elementcase.ElementCase; |
|
|
|
import java.awt.Graphics2D; |
|
|
|
/** |
|
* Created by kerry on 2020-04-21 |
|
*/ |
|
public class NewUIModeCellElementPainter extends CellElementPainter { |
|
|
|
public void paintContent(Graphics2D g2d, ElementCase report, TemplateCellElement ce, int width, int height, int resolution) { |
|
PaintUtils.paintGridCellContent(g2d, ce, width, height, resolution, new NewUIModeRotationDraw()); |
|
} |
|
|
|
|
|
}
|
|
|