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 TextStylegetCellTextStyle()Gets TextStyle which will be used to draw the cell's content.ViewColumngetColumn()GetsViewColumnto which the currently rendered cell belongs.TaskgetTask()voidsetCellTextStyle(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
ViewColumnto which the currently rendered cell belongs.- Returns:
ViewColumnto 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.
-
-