本文整理匯總了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);
}