public interface ICellFormat
| Modifier and Type | Method and Description |
|---|---|
void |
Assign(ICellFormat source)
Assign an existing cell format to the cell
|
FontAlignment |
getAlignment()
Return font alignment of the cell
|
Color |
getBackColor()
Returns the back color of the given cell
|
Font |
getFont()
Returns the font of the given cell
|
Color |
getForeColor()
Returns the fore color of the given cell
|
int |
getHeight()
Returns the height of the given cell
|
Color |
getLineColor()
Returns the line color of the given cell
|
FontStyle |
getStyle()
Get font style of the cell
|
int |
getWidth()
Returns the width of the given cell
|
void |
setAlignment(FontAlignment fontAlignment)
Set font alignment of the cell
|
void |
setBackColor(Color color)
Sets the back color of the given cell
|
void |
setFont(Font font)
Sets the font of the given cell
|
void |
setForeColor(Color color)
Sets the fore color of the given cell
|
void |
setHeight(int height)
Sets the height of the given cell
|
void |
setLineColor(Color color)
Sets the line color of the given cell
|
void |
setStyle(FontStyle fontStyle)
Set font style of the cell
|
void |
setWidth(int width)
Sets the width of the given cell
|
int getWidth()
void setWidth(int width)
width - int getHeight()
void setHeight(int height)
height - Color getBackColor()
void setBackColor(Color color)
color - Color getForeColor()
void setForeColor(Color color)
color - Color getLineColor()
void setLineColor(Color color)
color - Font getFont()
void setFont(Font font)
font - FontAlignment getAlignment()
void setAlignment(FontAlignment fontAlignment)
fontAlignment - FontStyle getStyle()
void setStyle(FontStyle fontStyle)
fontStyle - void Assign(ICellFormat source)
source -