示例#1
0
 public MatrixCellValue(MatrixKey key, RowValue row, int rowIndex, int colIndex, string colName, object value)
 {
     MatrixKey = key;
     Row       = row;
     RowIndex  = rowIndex;
     ColIndex  = colIndex;
     ColName   = colName;
     Value     = value;
     Address   = $"{CellAddressCalculator.GetColumnLetters(colIndex)}{rowIndex + 1}";
 }
示例#2
0
 public ColumnKey(MatrixKey matKey, int index, string colKey)
 {
     MatrixKey = matKey;
     Index     = index;
     Key       = colKey;
 }