コード例 #1
0
ファイル: ExcelExtensions.cs プロジェクト: BclEx/ExcelTrans
 public static void CellsValue(this IExcelContext ctx, Address r, int fromRow, int fromCol, int toRow, int toCol, object value, CellValueKind valueKind = CellValueKind.Value) => ctx.CellsValue(ExcelService.GetAddress(r, fromRow, fromCol, toRow, toCol), value, valueKind);
コード例 #2
0
ファイル: CellsValue.cs プロジェクト: BclEx/ExcelTrans
 void IExcelCommand.Execute(IExcelContext ctx, ref Action after) => ctx.CellsValue(Cells, Value.CastValue(ValueType), ValueKind);
コード例 #3
0
ファイル: ExcelExtensions.cs プロジェクト: BclEx/ExcelTrans
 public static void CellsValue(this IExcelContext ctx, Address r, int row, int col, object value, CellValueKind valueKind = CellValueKind.Value) => ctx.CellsValue(ExcelService.GetAddress(r, row, col), value, valueKind);