Package com.aspose.tasks
Class TaskTextStyleEventArgs
- java.lang.Object
-
- com.aspose.tasks.TaskTextStyleEventArgs
-
public class TaskTextStyleEventArgs extends Object
This class represents set of data that related to the rendering of table cell's content.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TextStyle
getCellTextStyle()
Gets TextStyle which will be used to draw the cell's content.ViewColumn
getColumn()
GetsViewColumn
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.
-
-
-
Method Detail
-
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 which will be used to draw the cell's content.
-
setCellTextStyle
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:
value
- 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
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
(getTask()
/setTask(Task)
) which corresponds to the currently rendered row.
-
-