public class TaskTextStyleEventArgs extends Object
This class represents set of data that related to the rendering of table cell's content.
Modifier and Type | Method and Description |
---|---|
TextStyle |
getCellTextStyle()
Gets TextStyle which will be used to draw the cell's content.
|
ViewColumn |
getColumn()
Gets
ViewColumn to which the currently rendered cell belongs. |
Task |
getTask()
|
void |
setCellTextStyle(TextStyle value)
Sets TextStyle which will be used to draw the cell's content.
|
public final TextStyle getCellTextStyle()
Gets TextStyle which will be used to draw the cell's content. This object can be use to customize appearance of a table cell.
public final void setCellTextStyle(TextStyle value)
Sets TextStyle which will be used to draw the cell's content. This object can be use to customize appearance of a table cell.
value
- TextStyle which will be used to draw the cell's content.public final ViewColumn getColumn()
Gets ViewColumn
to which the currently rendered cell belongs.
ViewColumn
to which the currently rendered cell belongs.public final Task getTask()
Gets Task
(getTask()
/setTask(Task)
) which corresponds to the currently rendered row.
Task
(getTask()
/setTask(Task)
) which corresponds to the currently rendered row.