TextStyle

TextStyle class

Change the visual style of the text for an item in the project view.

public class TextStyle

Constructors

NameDescription
TextStyle()Initializes a new instance of the TextStyle class with default settings.
TextStyle(FontDescriptor)Initializes a new instance of the TextStyle class with the specified font settings.
TextStyle(FontStyles)Initializes a new instance of the TextStyle class with the default font and specified font style.
TextStyle(float, FontStyles)Initializes a new instance of the TextStyle class with the default font and specified font size and 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.
Font { get; set; }Gets or sets font of the text style.
virtual ItemType { get; set; }Gets or sets TextItemType of the text style.

Examples

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

var project = new Project(DataDir + "CreateProject2.mpp");
SaveOptions options = new PdfSaveOptions
{
    PresentationFormat = PresentationFormat.ResourceSheet
};

var style = new TextStyle();
style.Color = Color.OrangeRed;
style.Font = new FontDescriptor(FontFamily.GenericMonospace.Name, 10F, FontStyles.Bold | FontStyles.Italic);
style.ItemType = TextItemType.OverallocatedResources;
style.BackgroundColor = Color.Aqua;
style.BackgroundPattern = BackgroundPattern.DarkDither;

options.TextStyles = new List<TextStyle>
{
    style
};
project.Save(OutDir + "CustomizeTextStyle_out.pdf", options);

See Also