WordsProcessing: Add support for All Caps and Small Caps
Add support for the All Caps and Small Caps properties of the runs. These properties are currently ommitted on import.
2 comments
ADMIN
Dess | Tech Support Engineer, Principal
Posted on:22 Dec 2023 14:46
Hello, Francois,
Thank you for the provided input. It will be definitely considered when implementing this feature. Make sure you cast your vote for the item to increase its priority.
Regards,
Dess | Tech Support Engineer, Principal
Progress Telerik
The All Caps and Small Caps should also be supported by styles.
It should be possible to define a style with All Caps as follow:
var document = new RadFlowDocument();
var style = new Style("ALL_CAPS", StyleType.Paragraph)
{
Name = "ALL_CAPS",
BasedOnStyleId = BuiltInStyleNames.NormalStyleId
};
style.CharacterProperties.AllCaps.LocalValue = true;
document.StyleRepository.Add(style);