GroupDocs.Conversion for .NET 18.2 Release Notes

Major Features

There are 4 new features, improvements and fixes in this regular monthly release. The most notable are:

  • Conversion from PostScript
  • Option to convert specific range when converting from cells
  • Option for skipping blank rows and columns when converting from cells
  • Bug fixes

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
CONVERSIONNET‑2322Convert specific range when converting cells documentNew Feature
CONVERSIONNET‑2344Implement conversion from PostScriptNew Feature
CONVERSIONNET‑2338Implement configuration option for selecting if blank rows and columns should be skipped when converting Cells documentImprovement
CONVERSIONNET‑2324Just print area is getting converted, not the entire spreadsheetFix

Public API and Backward Incompatible Changes

Introduced new property ConvertRange

/// <summary>
/// Convert specific range when converting to other than cells format. Example: "D1:F8"
/// </summary>
public string ConvertRange { get; set; }

Usage

var saveOptions = new PdfSaveOptions();
saveOptions.CellsOptions.ConvertRange = "D1:F8";

Introduced new property SkipEmptyRowsAndColumns

/// <summary>
/// Skips empty rows and columns when converting. Default is True.
/// </summary>
public bool SkipEmptyRowsAndColumns { get; set; }

Usage

var saveOptions = new PdfSaveOptions();
saveOptions.CellsOptions.SkipEmptyRowsAndColumns= false;