Skip to content

Commit

Permalink
borders
Browse files Browse the repository at this point in the history
  • Loading branch information
daizutabi committed Jul 7, 2024
1 parent 055611f commit 414d9a5
Show file tree
Hide file tree
Showing 6 changed files with 150 additions and 248 deletions.
30 changes: 30 additions & 0 deletions src/pptxlib/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,3 +178,33 @@ def active(self):

# def add_table(self, *args, **kwargs):
# return self.slide.shapes.add_table(*args, **kwargs)
# """
# CustomLayoutに関連するモジュール
# """


# def copy_layout(slide, name=None, replace=True):
# """指定するスライドのCustomLayoutをコピーして返す.

# Parameters
# ----------
# slide : xlviews.powerpoint.main.Slide
# スライドオブジェクト
# name : str, optional
# CustomLayoutの名前
# replace : bool, optional
# スライドのCustomLayoutをコピーしたものに
# 置き換えるか

# Returns
# -------
# layout
# """
# layouts = slide.parent.api.SlideMaster.CustomLayouts
# slide.api.CustomLayout.Copy()
# layout = layouts.Paste()
# if name:
# layout.Name = name
# if replace:
# slide.api.CustomLayout = layout
# return layout
30 changes: 0 additions & 30 deletions src/pptxlib/layout.py

This file was deleted.

72 changes: 0 additions & 72 deletions src/pptxlib/style.py

This file was deleted.

145 changes: 0 additions & 145 deletions src/pptxlib/table.py

This file was deleted.

Loading

0 comments on commit 414d9a5

Please sign in to comment.