コード例 #1
0
ファイル: XLPivotTables.cs プロジェクト: Exort/ExcelTest
        public IXLPivotTable AddNew(string name, IXLCell target, IXLRange source)
        {
            var pivotTable = new XLPivotTable {
                Name = name, TargetCell = target, SourceRange = source
            };

            _pivotTables.Add(name, pivotTable);
            return(pivotTable);
        }
コード例 #2
0
        public IXLPivotTable Add(string name, IXLCell targetCell, IXLTable table)
        {
            var pivotTable = new XLPivotTable(this.Worksheet)
            {
                Name        = name,
                TargetCell  = targetCell,
                SourceTable = table
            };

            _pivotTables.Add(name, pivotTable);
            return(pivotTable);
        }
コード例 #3
0
ファイル: XLPivotTables.cs プロジェクト: hal1932/ClosedXML
 public IXLPivotTable AddNew(string name, IXLCell target, IXLRange source)
 {
     var pivotTable = new XLPivotTable { Name = name, TargetCell = target, SourceRange = source };
     _pivotTables.Add(name, pivotTable);
     return pivotTable;
 }