Aspose.HTML for .NET 19.2 Release Notes

Aspose.HTML for .NET 19.2 Release Notes


As per regular monthly update process of all APIs being offered by Aspose, we are honoured to announce the February release of Aspose.HTML for .NET. In this release, we have made some internal bug fixes related to the document rendering and page splitting algorithms.

Improvements and Changes

KeySummaryCategory
HTMLNET-1629Problem repeating header on each pageBug
HTMLNET-1736An exception raises while loading an HTML fileBug
HTMLNET-1550Problem converting HTML to PDFBug

Added APIs:

Added the overridden method ICSSStyleDeclaration.SetProperty to simplify the declaration object usage.

 namespace Aspose.Html.Dom.Css

{

    public interface ICSSStyleDeclaration : IEnumerable<string>, ICSS2Properties

    {

        /// <summary>

        /// Used to set a property value within this declaration block.

        /// </summary>

        /// <param name="propertyName">The name of the CSS property.</param>

        /// <param name="value">The property value.</param>

        void SetProperty(string propertyName, string value);

    }

}