コード例 #1
0
ファイル: RibbonController.cs プロジェクト: paralrk/DocGen
        public void SetRowsHeight(int heightScale)
        {
            sheet = (Excel.Worksheet)Globals.ThisAddIn.Application.ActiveSheet;
            CellsSizeManager cellsManager = new CellsSizeManager();

            cellsManager.SetRowsHeight(sheet, heightScale);
        }
コード例 #2
0
ファイル: RibbonController.cs プロジェクト: paralrk/DocGen
        public void SetColumnsWidth(int widthScale)
        {
            sheet = (Excel.Worksheet)Globals.ThisAddIn.Application.ActiveSheet;
            CellsSizeManager cellsManager = new CellsSizeManager();

            cellsManager.SetColumnWidth(sheet, widthScale);
        }