When the last element from a table cell is an empty line, the latter is skipped and not imported. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190105 Please use the new item for commenting, voting and subscribing instead of this one.
The document default style properties are not cloned on document.Clone().
There is a workaround by using the following code:
var cloning = this.document.Clone();
ClearPropertiesWithoutValueAndSetLocalValues(this.document.DefaultStyle.CharacterProperties, cloning.DefaultStyle.CharacterProperties);
ClearPropertiesWithoutValueAndSetLocalValues(this.document.DefaultStyle.ParagraphProperties, cloning.DefaultStyle.ParagraphProperties);
private void ClearPropertiesWithoutValueAndSetLocalValues(DocumentElementPropertiesBase propertiesFrom, DocumentElementPropertiesBase propertiesTo)
{
foreach (var stylePropertyFrom in propertiesFrom.StyleProperties)
{
var stylePropertyTo = propertiesTo.GetStyleProperty(stylePropertyFrom.PropertyDefinition);
stylePropertyTo.ClearValue();
if (stylePropertyFrom.HasLocalValue)
{
object value = stylePropertyTo.GetLocalValueAsObject();
stylePropertyTo.SetValueAsObject(value);
}
}
}
This item is migrated to the Telerik Document Processing portal:
http://feedback.telerik.com/Project/184/Feedback/Details/190117
Please use the new item for commenting, voting and subscribing instead of this one.
When using ZipArchive in Update mode do not load entire Zip archive in the memory. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190133 Please use the new item for commenting, voting and subscribing instead of this one.
Workaround: Copy the default styles after the Mail Merge RadFlowDocument merged = sourceDocument.MailMerge(mailMergeSource); merged.DefaultStyle.ParagraphProperties.CopyPropertiesFrom(sourceDocument.DefaultStyle.ParagraphProperties); merged.DefaultStyle.CharacterProperties.CopyPropertiesFrom(sourceDocument.DefaultStyle.CharacterProperties); This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190096 Please use the new item for commenting, voting and subscribing instead of this one.
In MS Word you can crop the image from Picture Tools -> Format -> Size -> Crop button in the ribbon. This preserves the whole image in the file, but when it is rendered it shows only the cropped image area. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190088 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190010 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190008 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190038 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190237 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190015 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190059 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190071 Please use the new item for commenting, voting and subscribing instead of this one.
Workaround:
private static void WorkaroundFieldsIssue(RadFlowDocument flowdocument)
{
foreach (FieldCharacter fieldCharacter in flowdocument.EnumerateChildrenOfType<FieldCharacter>().ToList())
{
// only for start
if (fieldCharacter.FieldCharacterType == FieldCharacterType.Start)
{
if (fieldCharacter.FieldInfo.Separator != null && fieldCharacter.FieldInfo.Separator.Parent == null)
{
Paragraph parent = fieldCharacter.FieldInfo.End.Paragraph;
int index = parent.Inlines.IndexOf(fieldCharacter.FieldInfo.End);
fieldCharacter.FieldInfo.End.Paragraph.Inlines.Insert(index, fieldCharacter.FieldInfo.Separator);
}
}
}
}
This item is migrated to the Telerik Document Processing portal:
http://feedback.telerik.com/Project/184/Feedback/Details/190083
Please use the new item for commenting, voting and subscribing instead of this one.
In case table cell doesn't have background directly applied it should inherit the background of its parent table. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190064 Please use the new item for commenting, voting and subscribing instead of this one.
Content in cells should be centered vertically and cells should have cell spacing and margins to make them look similarly to browsers. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190033 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190043 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190034 Please use the new item for commenting, voting and subscribing instead of this one.
When defaultThemeVersion is missing from the file, some styles are not shown when the document is opened in MS Excel. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190098 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190100 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190081 Please use the new item for commenting, voting and subscribing instead of this one.