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


C# ICell.SetCellErrorValue方法代码示例

本文整理汇总了C#中ICell.SetCellErrorValue方法的典型用法代码示例。如果您正苦于以下问题:C# ICell.SetCellErrorValue方法的具体用法?C# ICell.SetCellErrorValue怎么用?C# ICell.SetCellErrorValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ICell的用法示例。


在下文中一共展示了ICell.SetCellErrorValue方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: CopyValue

 public void CopyValue(ICell destCell)
 {
     switch (_cellType)
     {
         case CellType.BLANK: destCell.SetCellType(CellType.BLANK); return;
         case CellType.NUMERIC: destCell.SetCellValue(_numberValue); return;
         case CellType.BOOLEAN: destCell.SetCellValue(_boolValue); return;
         case CellType.STRING: destCell.SetCellValue(_stringValue); return;
         case CellType.ERROR: destCell.SetCellErrorValue((byte)_errorValue); return;
     }
     throw new InvalidOperationException("Unexpected data type (" + _cellType + ")");
 }
开发者ID:Johnnyfly,项目名称:source20131023,代码行数:12,代码来源:ForkedEvaluationCell.cs

示例2: SetCellValue

 private static void SetCellValue(ICell cell, CellValue cv)
 {
     CellType cellType = cv.CellType;
     switch (cellType)
     {
         case CellType.Boolean:
             cell.SetCellValue(cv.BooleanValue);
             break;
         case CellType.Error:
             cell.SetCellErrorValue((byte)cv.ErrorValue);
             break;
         case CellType.Numeric:
             cell.SetCellValue(cv.NumberValue);
             break;
         case CellType.String:
             cell.SetCellValue(new HSSFRichTextString(cv.StringValue));
             break;
         //case CellType.Blank:
         //// never happens - blanks eventually get translated to zero
         //case CellType.Formula:
         //// this will never happen, we have already evaluated the formula
         default:
             throw new InvalidOperationException("Unexpected cell value type (" + cellType + ")");
     }
 }
开发者ID:mdjasim,项目名称:npoi,代码行数:25,代码来源:HSSFFormulaEvaluator.cs

示例3: SetCellValue

 private static void SetCellValue(ICell cell, CellValue cv)
 {
     CellType cellType = cv.CellType;
     switch (cellType)
     {
         case CellType.BOOLEAN:
             cell.SetCellValue(cv.BooleanValue);
             break;
         case CellType.ERROR:
             cell.SetCellErrorValue((byte)cv.ErrorValue);
             break;
         case CellType.NUMERIC:
             cell.SetCellValue(cv.NumberValue);
             break;
         case CellType.STRING:
             cell.SetCellValue(new XSSFRichTextString(cv.StringValue));
             break;
         case CellType.BLANK:
         // never happens - blanks eventually Get translated to zero
         case CellType.FORMULA:
         // this will never happen, we have already Evaluated the formula
         default:
             throw new InvalidOperationException("Unexpected cell value type (" + cellType + ")");
     }
 }
开发者ID:xiepeixing,项目名称:npoi,代码行数:25,代码来源:XSSFFormulaEvaluator.cs

示例4: CopyValue

 public void CopyValue(ICell destCell)
 {
     switch (_cellType)
     {
         case CellType.Blank: destCell.SetCellType(CellType.Blank); return;
         case CellType.Numeric: destCell.SetCellValue(_numberValue); return;
         case CellType.Boolean: destCell.SetCellValue(_boolValue); return;
         case CellType.String: destCell.SetCellValue(_stringValue); return;
         case CellType.Error: destCell.SetCellErrorValue((byte)_errorValue); return;
     }
     throw new InvalidOperationException("Unexpected data type (" + _cellType + ")");
 }
开发者ID:JnS-Software-LLC,项目名称:npoi,代码行数:12,代码来源:ForkedEvaluationCell.cs


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