예제 #1
0
        public void Build(ProjectEntity project)
        {
            this.backlogList = Backlog.GetAll(project.Name, TFS.Utility.GetBestIteration(project.Name));

            BuildMainTitle();
            BuildSubTitle();
            BuildDescription();

            int startRow = BuildSummaryTable();

            startRow = BuildDelayedTable(startRow);
            startRow = BuildAbandonTable(startRow);
            startRow = BuildRemovedTable(startRow);
            BuildAllTable(startRow);

            var firstRow = sheet.get_Range("B1:AB1");

            Utility.AddNativieResource(firstRow);
            firstRow.ColumnWidth = 12;

            sheet.Cells[1, "A"] = "";
        }