GroupDocs.Editor for .NET 20.2 Release Notes

Major Features

GroupDocs.Editor for .NET version 20.2 contains several new features, improvements and bug fixes, which are briefly listed below:

  • New feature, that allows to set custom class name for all form-fields with corresponding public options.
  • New option, which allows to specify a text direction for the input plain text document (TXT) before its editing.
  • Added support of PDF 1.7 standard while saving edited document to PDF.
  • Fixed bug with a document, that was incorrectly rendered to HTML in paginal mode and then incorrectly converted back to WordProcessing.

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
EDITORNET-1467Add ability to set custom class name for all form-fields with corresponding public optionsNew feature
EDITORNET-1512Add support of text direction in input plain text documentNew feature
EDITORNET-1505Add support of PDf 1.7Improvement
EDITORNET-1504WordProcessing document is incorrectly rendered in paginal modeBug

Public API and Backward Incompatible Changes

New property in WordProcessingEditOptions

Implementing a EDITORNET-1467 ticket has a result in form of a new public property in the GroupDocs.Editor.Options.WordProcessingEditOptions class:

public string InputControlsClassName {get; set;}

You can find more info about this feature in the article “Adding class name to input controls”.

New enum and property in TextEditOptions

Implementing a EDITORNET-1512 ticket caused a new enum GroupDocs.Editor.Options.TextDirection:

public enum TextDirection
{
	LeftToRight,
	RightToLeft,
	Auto
}

This enum is now used in the GroupDocs.Editor.Options.TextEditOptions class:

public TextDirection Direction {get; set;}

New enum value in PdfCompliance enum

The EDITORNET-1505 improvement is represented by a new value in the GroupDocs.Editor.Options.PdfCompliance:

public enum PdfCompliance
{
	...
	Pdf17,
	...
}