当前位置: 首页>>代码示例>>C#>>正文


C# Cell.PutValue方法代码示例

本文整理汇总了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";
     }
 }
开发者ID:aspose-cells,项目名称:Aspose.Cells-for-.NET,代码行数:11,代码来源:UsingLightCellsAPI.cs

示例2: CellValueStyle

 protected static void CellValueStyle(Cell cl, object value, Style style)
 {
     cl.PutValue(value);
     cl.Style = style;
 }
开发者ID:Eric-Guo,项目名称:uo-mes,代码行数:5,代码来源:Report.aspx.cs

示例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));
 }
开发者ID:Eric-Guo,项目名称:uo-mes,代码行数:10,代码来源:ExcelModeler.cs

示例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);
        }
开发者ID:jungfengpaulwang,项目名称:EMBAReportHelper,代码行数:48,代码来源:DocumentHelper.cs


注:本文中的Cell.PutValue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。