本文整理汇总了C#中Cell.PutValue方法的典型用法代码示例。如果您正苦于以下问题:C# Cell.PutValue方法的具体用法?C# Cell.PutValue怎么用?C# Cell.PutValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cell
的用法示例。
在下文中一共展示了Cell.PutValue方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: StartCell
public void StartCell(Cell cell)
{
cell.PutValue(_row + _column);
if (_row == 1)
{
}
else
{
cell.Formula = "=Rand() + A2";
}
}
示例2: CellValueStyle
protected static void CellValueStyle(Cell cl, object value, Style style)
{
cl.PutValue(value);
cl.Style = style;
}
示例3: UpdateRecordStatus
private void UpdateRecordStatus(Cell executeActionCell, Cell completeMsgCell, bool res)
{
if (res == true)
{
completeMsgCell.PutValue(string.Format(ResX.Service_success, executeActionCell.Value.ToString(), DateTime.Now));
executeActionCell.PutValue("IGNORE");
}
else
completeMsgCell.PutValue(string.Format(ResX.Service_failed, executeActionCell.Value.ToString(), DateTime.Now));
}
示例4: PutValue
public static void PutValue(Cell cell, string value, Type type)
{
if (Type.GetType("System.Int32") == type)
{
int bValue;
if (int.TryParse(value, out bValue))
cell.PutValue(bValue);
else
cell.PutValue(value);
return;
}
if ((DateTime.Today).GetType() == type)
{
DateTime bValue;
if (DateTime.TryParse(value, out bValue))
cell.PutValue(bValue);
else
cell.PutValue(value);
return;
}
if (Type.GetType("System.Double") == type)
{
double bValue;
if (double.TryParse(value, out bValue))
cell.PutValue(bValue);
else
cell.PutValue(value);
return;
}
if (true.GetType() == type)
{
bool bValue;
if (bool.TryParse(value, out bValue))
cell.PutValue(bValue);
else
cell.PutValue(value);
return;
}
cell.PutValue(value);
}