Simulating 'Use Paragraph Font'
TX Text Control's button bar contains a drop down list with all available styles that can be applied to a document. Generally, by applying a ParagraphStyle to a Selection, the InlineStyles are not be changed. The combo box contains an item called [Use Paragraph Font]. This item resets one or more of the style's attributes to its default value, which is the same value as defined for the surrounding paragraph. By resetting all values, the mixed paragraph will adapt the complete formatting of…

TX Text Control's button bar contains a drop down list with all available styles that can be applied to a document. Generally, by applying a ParagraphStyle to a Selection, the InlineStyles are not be changed. The combo box contains an item called [Use Paragraph Font].
This item resets one or more of the style's attributes to its default value, which is the same value as defined for the surrounding paragraph. By resetting all values, the mixed paragraph will adapt the complete formatting of the ParagraphStyle. The attribute can be a bitwise combination of values from the Attributes enumeration contained in the InlineStyle class.
private void ParStyles_SelectedIndexChanged(object sender, System.EventArgs e)
{
if(ParStyles.SelectedItem.ToString() == "[Use Paragraph Font]")
{
try
{
TXTextControl.InlineStyle style = textControl1.InlineStyles.GetItem(textControl1.Selection.FormattingStyle);
style.ResetToParagraph(TXTextControl.InlineStyle.Attributes.FontSize);
style.Apply();
}
catch
{
}
}
}
Related Posts
Create a Table of Contents in Windows Forms using C#
This article explains how to create a table of contents in Windows Forms using the ribbon or programmatically. Creating a table of contents is required to organize large documents.
Two Ways to Restart Numbered Lists in TX Text Control
In TX Text Control, numbered lists are continued by default and need to be reset when required. There is more than one way if you want to restart numbered lists in a document. In this article, two…
Paste Special: The Easy Way to Implement
In an older sample, I showed how to implement a paste special functionality by accessing the clipboard directly using .NET functionality. In version 15.0, we implemented this functionality…
How to Remove All Section Breaks in a Document?
With version 14.0, we introduced document section breaks that allow you to have different page formats in the same document. Version 15.0 implements page columns that can be adjusted section-wise.…
Batch Printing: How to Print Documents in One Print Job
A typical requirement when printing loads of documents is managing the print jobs. A group of separate documents might be subsumed in a single print job. We just published a new sample in our…