SM Software (C), 2000
Migration from TXLSFile v.3.0 to TXLSFile v.3.1
===============================================

In TXLSFile v.3.1. the memory consumption was reduced, because the number 
of created objects was reduced. Some classes have been removed, 
and replaced with new properties in other classes. 


Font property replaced with new properties 
------------------------------------------
    Font property have been removed from TCell and TRange classes. 
    Now you may use the following new TCell and TRange properties to work 
    with font: 
      FontBold 
      FontItalic 
      FontUnderline 
      FontStrikeOut 
      FontUnderlineStyle 
      FontSSStyle 
      FontName 
      FontColorIndex 
      FontColorRGB 
      FontHeight 

    Read more about new properties in product help. 


Borders property replaced with new properties 
---------------------------------------------
    Borders property have been removed from TCell and TRange classes. 
    Now you may use the following new TCell and TRange properties to work 
    with borders: 
      BorderColorIndex 
      BorderColorRGB 
      BorderStyle 

    Read more about new properties in product help. 



Sample - old and new code 
-------------------------
    Old code: 

      Cells[Row, Col].Font.ColorIndex:= xlColorRed;
      Cells[Row, Col].Font.Style:= [fsBold, fsItalic];

    New code: 
      Cells[Row, Col].FontColorIndex:= xlColorRed;
      Cells[Row, Col].FontBold:= True;
      Cells[Row, Col].FontItalic:= True;

