Unplanned
Last Updated: 22 Dec 2023 14:46 by ADMIN
ADMIN
Tanya
Created on: 14 Jun 2017 10:56
Category: WordsProcessing
Type: Feature Request
12
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

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Francois
Posted on: 22 Dec 2023 13:06

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);