Пример #1
0
 /// <summary>
 /// Initialize the cell with default values.
 /// </summary>
 public TableCellModel()
 {
     BackgroundColor           = Color.White;
     BackgroundColorExpression = new PropertyUpdateExpressionModel();
     Text           = string.Empty;
     TextExpression = new PropertyUpdateExpressionModel();
 }
Пример #2
0
 /// <summary>
 /// Initialize the cell with text.
 /// </summary>
 /// <param name="theText">Row text.</param>
 public TableCellModel(string theText)
 {
     Text                      = theText;
     TextExpression            = new PropertyUpdateExpressionModel();
     BackgroundColor           = Color.White;
     BackgroundColorExpression = new PropertyUpdateExpressionModel();
 }