TableTextStyle

TableTextStyle class

Represents a text style in a view table.

public class TableTextStyle : TextStyle

Constructors

NameDescription
TableTextStyle(int)Initializes a new instance of the TableTextStyle class.
TableTextStyle(int, FontDescriptor)Initializes a new instance of the TableTextStyle class with the specified font.
TableTextStyle(int, FontStyles)Initializes a new instance of the TableTextStyle class with the default font settings and the specified font style.
TableTextStyle(int, float, FontStyles)Initializes a new instance of the TableTextStyle class with the specified font size and font style.

Properties

NameDescription
BackgroundColor { get; set; }Gets or sets background color of the text style. Color.
BackgroundPattern { get; set; }Gets or sets background pattern of the text style. BackgroundPattern.
Color { get; set; }Gets or sets color of the text.
Field { get; set; }Gets or sets a field the style is to be applied to. Field.
Font { get; set; }Gets or sets font of the text style.
override ItemType { get; }Returns a value of the TextItemType enum.
RowUid { get; }Gets a row unique id. Return -1 if the style is to be applied to all rows of a view.

Examples

Shows how to customize table text styles which are used to style different text items in a project.

var project = new Project(DataDir + "Project2.mpp");
project.Set(Prj.NewTasksAreManual, false);

var view = (GanttChartView)project.Views.ToList()[0];

// set first task name text style
var style1 = new TableTextStyle(1);
// set a field the style is to be applied to.
style1.Field = Field.TaskName;
// set <see cref="P:Aspose.Tasks.Visualization.TextStyle.Font" /> of the text style.
style1.Font = new FontDescriptor("Impact", 12F, FontStyles.Bold | FontStyles.Italic);
// set size in points of the text style font.

// set second task duration text style
var style2 = new TableTextStyle(2);
style2.Field = Field.TaskDurationText;
style2.Font = new FontDescriptor("Impact", 16F, FontStyles.Underline);

view.TableTextStyles.Add(style1);
view.TableTextStyles.Add(style2);

SimpleSaveOptions options = new MPPSaveOptions
{
    // set a flag indicating that view data must be written
    WriteViewData = true
};
project.Save(OutDir + "WorkWithTableTextStyle_out.mpp", options);

See Also