function RowInfo()
{
   var m_colRowData = new Collection;
   var m_colRowProperties = new Collection;

   m_colRowProperties.update("Style", "");

   this.addColumnData = function(
   szColumn,
   szData)
   {
      m_colRowData.add(szColumn, szData);
   }

   this.RowData = function()
   {
      return m_colRowData;
   }

   this.addProperty = function(
   szProperty,
   szValue)
   {
      m_colRowProperties.add(szProperty, szValue);
   }

   this.RowProperties = function()
   {
      return m_colRowProperties;
   }

   this.setStyle = function(
   szStyle)
   {
      m_colRowProperties.update("Style", szStyle);
   }

   this.getStyle = function()
   {
      return m_colRowProperties.getValueByKey("Style");
   }
}