Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Interfaces/IMatrixJsonItem.cs

Last change on this file was 17519, checked in by dpiringe, 4 years ago

#3026:

  • added error output for failed runner initialization
  • reorganised some final view models
  • TargetedJsonItemType (in JsonItemVMBase) now automatically returns the type of the defined JsonItem
  • code cleanup
  • refactored RegressionProblemDataConverter
  • added lots of comments
  • added new view for StringArrayJsonItem
  • added new UI component for concrete restricted items and used it in JsonItemConcreteItemArrayControl and JsonItemValidValuesControl
File size: 634 bytes
RevLine 
[17519]1using System.Collections.Generic;
[17446]2
3namespace HeuristicLab.JsonInterface {
[17473]4  public interface IMatrixJsonItem : IValueJsonItem {
[17519]5    /// <summary>
6    /// Flag to define resizable rows.
7    /// </summary>
[17446]8    bool RowsResizable { get; set; }
[17519]9    /// <summary>
10    /// Flag to define resizable columns.
11    /// </summary>
[17446]12    bool ColumnsResizable { get; set; }
[17519]13    /// <summary>
14    /// IEnumerable of row names.
15    /// </summary>
[17471]16    IEnumerable<string> RowNames { get; set; }
[17519]17    /// <summary>
18    /// IEnumerable of column names.
19    /// </summary>
[17471]20    IEnumerable<string> ColumnNames { get; set; }
[17446]21  }
22}
Note: See TracBrowser for help on using the repository browser.