New DzHTMLText 2.1

The new version of DzHTMLText is available with TStrings property. If you are Delphi or Lazarus developer, download now and stay updated.

  • Implemented new Lines (TStrings) property and removed Text published property. ⚠️
  • Implemented Text (String) public property as a shortcut to new Lines property. ⚠️
  • Changed Lines (Integer) property name to LineCount. ⚠️
  • ❗ Component property change. Risk of data loss!
  • In order to keep TDzHTMLText Text string property content of your projects, you’ll need to manually change property on DFM file, before opening projects in Delphi. Open the DFM files (using a text editor) that contains TDzHTMLText objects and replace as in the example:
object DzHTMLText1: TDzHTMLText 
  //FROM: 
  Text = 'Line 1'#13#10'Line 2'#13#10'Line 3' 
  //TO: 
  Lines.Strings = ( 'Line 1'#13#10'Line 2'#13#10'Line 3') 
end

https://github.com/digao-dalpiaz/DzHTMLText/releases/tag/v2.1

2 thoughts on “New DzHTMLText 2.1”

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top