當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。