ITextStyleModificationCallback Interface |
Namespace: Aspose.Tasks.Visualization
The ITextStyleModificationCallback type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() | BeforeTaskTextStyleApplied |
The method to be called before rendering of a table cell for a task row in the following views:
'Gantt Chart', 'Task Sheet', 'Task Usage'.
|
public void WorkWithViewColumn() { var project = new Project(DataDir + "Project2.mpp"); var options = new PdfSaveOptions(); var columns = new List<ViewColumn> { new ResourceViewColumn(100, Field.ResourceName), new ResourceViewColumn(100, Field.ResourceActualWork), new ResourceViewColumn(100, Field.ResourceCost) }; columns[0].TextStyleModificationCallback = new MyTextStyleCallback(); // iterate over columns foreach (var column in columns) { Console.WriteLine("Column Name: " + column.Name); Console.WriteLine("Column Field: " + column.Field); Console.WriteLine("Column Width: " + column.Width); Console.WriteLine("Column Callback: " + column.TextStyleModificationCallback); Console.WriteLine(); } options.View = new ProjectView(columns); options.PresentationFormat = PresentationFormat.ResourceUsage; project.Save(OutDir + "WorkWithViewColumn_out.pdf", options); } private class MyTextStyleCallback : ITextStyleModificationCallback { /// <summary> /// The method to be called before rendering of a table cell for a task row in the following views: /// 'Gantt Chart', 'Task Sheet', 'Task Usage'. /// </summary> /// <param name="args">The <see cref="T:Aspose.Tasks.Visualization.TaskTextStyleEventArgs" /> object.</param> public void BeforeTaskTextStyleApplied(TaskTextStyleEventArgs args) { if (args.Task.Get(Tsk.Uid) % 2 == 0) { args.CellTextStyle.BackgroundColor = args.Column.StringAlignment == StringAlignment.Center ? Color.Cyan : Color.Red; args.CellTextStyle.BackgroundPattern = BackgroundPattern.SolidFill; } else { args.CellTextStyle.Color = Color.DarkGreen; } } }