TaskTextStyleEventArgs

Inheritance: java.lang.Object

public class TaskTextStyleEventArgs

This class represents set of data that related to the rendering of table cell’s content.

Methods

MethodDescription
getCellTextStyle()Gets TextStyle which will be used to draw the cell’s content.
getColumn()Gets ViewColumn to which the currently rendered cell belongs.
getTask()Gets Task (getTask()/setTask(Task)) which corresponds to the currently rendered row.
setCellTextStyle(TextStyle value)Sets TextStyle which will be used to draw the cell’s content.

getCellTextStyle()

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.

Returns: TextStyle - TextStyle which will be used to draw the cell’s content.

getColumn()

public final ViewColumn getColumn()

Gets ViewColumn to which the currently rendered cell belongs.

Returns: ViewColumn - ViewColumn to which the currently rendered cell belongs.

getTask()

public final Task getTask()

Gets Task (getTask()/setTask(Task)) which corresponds to the currently rendered row.

Returns: Task - Task (getTask()/setTask(Task)) which corresponds to the currently rendered row.

setCellTextStyle(TextStyle value)

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.

Parameters:

ParameterTypeDescription
valueTextStyleTextStyle which will be used to draw the cell’s content.