Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/12/13 12:20:25 (11 years ago)
Author:
sforsten
Message:

#2018:

  • added column names to the ValueTypeArray and StringArray
  • added batch update methods to IStringConvertibleArray similar to methods in IStringConvertibleMatrix
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ImprovingStringConvertibleMatrix/HeuristicLab.Data/3.3/BoolMatrix.cs

    r9306 r9308  
    6666    }
    6767    protected override bool SetValue(string value, int rowIndex, int columnIndex) {
     68      if (ReadOnly) throw new NotSupportedException("Item cannot be set. BoolMatrix is read-only.");
    6869      bool val;
    6970      if (bool.TryParse(value, out val)) {
     
    8687        }
    8788      }
     89      OnItemsChanged(positions);
    8890      return true;
    8991    }
Note: See TracChangeset for help on using the changeset viewer.