Calc(46)シートをファイルに切り出すマクロ

公開日: 2017年11月17日 更新日: 2019年05月11日

旧ブログ

t f B! P L
シートをコンテクストメニューから指定した形式のファイルに切り出すマクロです。選択範囲のみ別のシートに切り出すマクロも付けました。

前の関連記事:Calc(45)ファイル保存ダイアログとオプション


シートを切り出すコンテクストメニュー


ExportSheet.ods


ファイルを開くと埋め込みマクロが起動して、ExportExampleという名前のシートにサンプルデータが入力されます。


右クリックすると一番上にExportAsというメニュー項目がでてきます。


サブメニューのExport as CSVを選択すると、ファイル保存ダイアログFILESAVE_AUTOEXTENSION_PASSWORD_FILTEROPTIONSを表示させます。

Windows10では「ファイル名に拡張子を付ける」チェックボックスがでてきますが、「ファイルの種類」はcsv一種類しか設定していないので、意味のないこのチェックボックスは変更できないようにしています。

CSVではパスワードも設定できないので、「パスワード付きで保存する」チェックボックスも選択できないようにしています。

「フィルター設定を編集する」にチェックをつけると、CSVのオプションダイアログを表示します。

チェックしない場合は、設定値を決め打ちします。

ファイル名はエクスポートするシート名にしています。

デフォルトフォルダは、ExportSheet.odsファイルがあるフォルダになります。


Export as PDFを選択するとアクティブシートをPDFで保存します。

フィルター設定ダイアログは必ず表示させるようにしています。

アクティブシートをodsファイルに切り出してからPDFに変換してから保存するので、PDFオプションダイアログの「範囲」の設定に関係なく、アクティブシートだけがPDFファイルに出力されます。


Export as ODSではアクティブシートをODS形式で保存します。

パスワード入力ダイアログはコーディングしていないのでグレイアウトしています。

選択したセルだけ新規シートに切り出す



Selection to New Sheetを選択すると選択状態にあるセルをSelectionというシートにコピーします。

Ctrlキーを押しながらクリックすると連続していないセルが選択できますが、そのコピーにも対応しています。


新しいシートでもセルの選択状態を再現しています。

式も、式のままコピーします。

ExportSheet.odsに埋め込んだマクロ

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
#!/opt/libreoffice5.4/program/python
# -*- coding: utf-8 -*-
import unohelper  # オートメーションには必須(必須なのはuno)。
import os, sys
from itertools import zip_longest
from com.sun.star.ui import XContextMenuInterceptor
from com.sun.star.ui import ActionTriggerSeparatorType  # 定数
from com.sun.star.ui.ContextMenuInterceptorAction import EXECUTE_MODIFIED  # enum
from com.sun.star.sheet import CellFlags as cf # 定数
from com.sun.star.beans import PropertyValue  # Struct
from com.sun.star.ui.dialogs import ExtendedFilePickerElementIds  # 定数
from com.sun.star.ui.dialogs import ControlActions  # 定数
from com.sun.star.ui.dialogs import TemplateDescription  # 定数
from com.sun.star.ui.dialogs import ExecutableDialogResults  # 定数
def macro(documentevent=None):  # 引数は文書のイベント駆動用。 
    doc = XSCRIPTCONTEXT.getDocument() if documentevent is None else documentevent.Source  # ドキュメントのモデルを取得。
    ctx = XSCRIPTCONTEXT.getComponentContext()  # コンポーネントコンテクストの取得。
    sheet = getNewSheet(doc, "ExportExample"# 新規シートの取得。
    datarows = ("データ1", "データ2","","データ4"),\
                (),\
                ("データ5","","データ6")  # サンプルデータ。
    rowsToSheet(sheet, datarows)  # datarowsをシートに書き出し。
    controller = doc.getCurrentController()  # コントローラの取得。
    controller.setActiveSheet(sheet)  # シートをアクティブにする。 
    controller.registerContextMenuInterceptor(ContextMenuInterceptor(ctx, doc, sheet))  # コントローラにContextMenuInterceptorを登録する。
class ContextMenuInterceptor(unohelper.Base, XContextMenuInterceptor):  # コンテクストメニューのカスタマイズ。
    def __init__(self, ctx, doc, sheet):
        self.baseurl = getBaseURL(ctx, doc)  # ScriptingURLのbaseurlを取得。
        global exportAsCSV, exportAsPDF, exportAsODS, SelectionToNewSheet   # ScriptingURLで呼び出す関数。オートメーションやAPSOでは不可。
        exportAsCSV, exportAsPDF, exportAsODS, SelectionToNewSheet = globalFunctionCreator(ctx, doc, sheet)  # クロージャーでScriptingURLで呼び出す関数に変数を渡す。
    def notifyContextMenuExecute(self, contextmenuexecuteevent):  # 引数はContextMenuExecuteEvent Struct。
        baseurl = self.baseurl  # ScriptingURLのbaseurlを取得。
        contextmenu = contextmenuexecuteevent.ActionTriggerContainer  # すでにあるコンテクストメニュー(アクショントリガーコンテナ)を取得。
        submenucontainer = contextmenu.createInstance("com.sun.star.ui.ActionTriggerContainer"# サブメニューにするアクショントリガーコンテナをインスタンス化。
        addMenuentry(submenucontainer, "ActionTrigger", 0, {"Text": "Export as CSV...", "CommandURL": baseurl.format(exportAsCSV.__name__)})  # サブメニューを挿入。引数のない関数名を渡す。
        addMenuentry(submenucontainer, "ActionTrigger", 1, {"Text": "Export as PDF...", "CommandURL": baseurl.format(exportAsPDF.__name__)})  # サブメニューを挿入。引数のない関数名を渡す。
        addMenuentry(submenucontainer, "ActionTrigger", 2, {"Text": "Export as ODS...", "CommandURL": baseurl.format(exportAsODS.__name__)})  # サブメニューを挿入。引数のない関数名を渡す。
        addMenuentry(submenucontainer, "ActionTrigger", 3, {"Text": "Selection to New Sheet", "CommandURL": baseurl.format(SelectionToNewSheet.__name__)})
        addMenuentry(contextmenu, "ActionTrigger", 0, {"Text": "ExportAs", "SubContainer": submenucontainer})  # サブメニューを一番上に挿入。
        addMenuentry(contextmenu, "ActionTriggerSeparator", 1, {"SeparatorType": ActionTriggerSeparatorType.LINE})  # アクショントリガーコンテナのインデックス1にセパレーターを挿入。
        return EXECUTE_MODIFIED  # このContextMenuInterceptorでコンテクストメニューのカスタマイズを終わらす。
def addMenuentry(menucontainer, menutype, i, props):  # i: index, propsは辞書。menutypeはActionTriggerかActionTriggerSeparator。
    menuentry = menucontainer.createInstance("com.sun.star.ui.{}".format(menutype))  # ActionTriggerContainerからインスタンス化する。
    [menuentry.setPropertyValue(key, val) for key, val in props.items()]  #setPropertyValuesでは設定できない。エラーも出ない。
    menucontainer.insertByIndex(i, menuentry)  # submenucontainer[i]やsubmenucontainer[i:i]は不可。挿入以降のメニューコンテナの項目のインデックスは1増える。
def globalFunctionCreator(ctx, doc, sheet):
    smgr = ctx.getServiceManager()  # サービスマネージャーの取得。
    if doc.hasLocation():  # ドキュメントが保存されているとき。
        fileurl = os.path.dirname(doc.getLocation())  # ドキュメントの親ディレクトリを取得。
    else# ドキュメントが保存れていない時はホームディレクトリを取得。
        pathsubstservice = smgr.createInstanceWithContext("com.sun.star.comp.framework.PathSubstitution", ctx)
        fileurl = pathsubstservice.getSubstituteVariableValue("$(home)")
    configreader = createConfigReader(ctx, smgr)  # 読み込み専用の関数を取得。
    root = configreader("/org.openoffice.TypeDetection.Filter/Filters"# コンフィギュレーションのルートを取得。 
    name = sheet.getName()  # シート名を取得。
    def exportAsCSV():  # アクティブシートをCSV形式で保存する。
        title = "Export as CSV"  # ファイル選択ダイアログのタイトル。
        filtername = "Text - txt - csv (StarCalc)"  # csvのフィルターネーム。
        exportextension = "csv"  # csvの拡張子。
        templatedescription = TemplateDescription.FILESAVE_AUTOEXTENSION_PASSWORD_FILTEROPTIONS  # パスワードとフィルター編集チェックボックス付きファイル選択ダイアログ。
        uiname, uicomponent = root[filtername].getPropertyValues(("UIName", "UIComponent"))  # フィルターのプロパティを取得。
        newfilename = "{}.{}".format(name, exportextension)  # 新規ファイル名を作成。
        kwargs = {"TemplateDescription": templatedescription, "setTitle": title, "setDisplayDirectory": fileurl, "setDefaultName": newfilename, "appendFilter": (uiname, exportextension)}  # キーTemplateDescriptionは必須。
        filepicker = createFilePicker(ctx, smgr, kwargs)  # ファイル選択ダイアログを取得。
        filepicker.setValue(ExtendedFilePickerElementIds.CHECKBOX_FILTEROPTIONS, ControlActions.SET_SELECT_ITEM, True# ファイル保存ダイアログのフィルター編集チェックボックスにチェックをつける。
        filepicker.enableControl(ExtendedFilePickerElementIds.CHECKBOX_PASSWORD, False# パスワードチェックボックスを無効にする。
        filepicker.enableControl(ExtendedFilePickerElementIds.CHECKBOX_AUTOEXTENSION, False# 拡張子をつけるチェックボックスを無効にする。Windowsのみ関係する。
        if filepicker.execute()==ExecutableDialogResults.OK:  # ファイル保存ダイアログを表示する。
            newfileurl = filepicker.getFiles()[0# ファイル選択ダイアログからfileurlを取得。
            newdoc = toNewDoc(ctx, doc, name)  # docのシート名nameのシートを入れたドキュメントを取得。    
            filteroptiondialog = smgr.createInstanceWithContext(uicomponent, ctx)  # UIコンポーネントをインスタンス化。
            filteroptiondialog.setSourceDocument(newdoc)  # 変換元のドキュメントを設定。
            filteroptiondialog.setPropertyValues((PropertyValue(Name="FilterName", Value=filtername),)) # 複数のフィルターに対応しているUIComponentはFilterNameを設定しないといけない。
            filteroption = filepicker.getValue(ExtendedFilePickerElementIds.CHECKBOX_FILTEROPTIONS, ControlActions.GET_SELECTED_ITEM)  # ファイル保存ダイアログのフィルター編集チェックボックスの状態を取得。       
            propertyvalues = [PropertyValue(Name="FilterName", Value=filtername)]
            if not filteroption:  # ファイル選択ダイアログのフィルター編集チェックボックスがチェックされていない時。設定決め打ち。
                propertyvalues.append(PropertyValue(Name="FilterOptions", Value="44,34,76,1,,0,false,true,true,false"))  # UTF-8、フィールド区切りカンマ、テキスト区切りダブルクォーテーション、セルの内容を表示通り。
                newdoc.storeAsURL(newfileurl, propertyvalues)  # ファイル選択ダイアログで取得したパスに保存する。
            elif filteroption and filteroptiondialog.execute()==ExecutableDialogResults.OK:  # ファイル選択ダイアログのフィルター編集チェックボックスがチェックされている時はフィルターオプションダイアログを表示してそれがOKの時。
                propertyvalues.extend(filteroptiondialog.getPropertyValues())
                newdoc.storeAsURL(newfileurl, propertyvalues)  # ファイル選択ダイアログで取得したパスに保存する。  
            newdoc.close(True# 新規ドキュメントを閉じないと.~lock.ExportExample.csv#といったファイルが残ってしまう。 
    def exportAsPDF():  # アクティブシートをPDF形式で保存する。
        title = "Export as PDF"  # ファイル選択ダイアログのタイトル。
        filtername = "calc_pdf_Export"  # フィルターネーム。
        exportextension = "pdf"  # 拡張子。
        templatedescription = TemplateDescription.FILESAVE_AUTOEXTENSION_PASSWORD_FILTEROPTIONS   
        uiname, uicomponent = root[filtername].getPropertyValues(("UIName", "UIComponent"))  # フィルターのプロパティを取得。
        newfilename = "{}.{}".format(name, exportextension)  # 新規ファイル名を作成。
        kwargs = {"TemplateDescription": templatedescription, "setTitle": title, "setDisplayDirectory": fileurl, "setDefaultName": newfilename, "appendFilter": (uiname, exportextension)}
        filepicker = createFilePicker(ctx, smgr, kwargs) 
        filepicker.enableControl(ExtendedFilePickerElementIds.CHECKBOX_PASSWORD, False# パスワードチェックボックスを無効にする。
        filepicker.setValue(ExtendedFilePickerElementIds.CHECKBOX_FILTEROPTIONS, ControlActions.SET_SELECT_ITEM, True# ファイル保存ダイアログのフィルター編集チェックボックスにチェックをつける。
        filepicker.enableControl(ExtendedFilePickerElementIds.CHECKBOX_FILTEROPTIONS, False# パスワードチェックボックスを無効にする。
        filepicker.enableControl(ExtendedFilePickerElementIds.CHECKBOX_AUTOEXTENSION, False# 拡張子をつけるチェックボックスを無効にする。Windowsのみ関係する。
        if filepicker.execute()==ExecutableDialogResults.OK:  # ファイル保存ダイアログを表示する。
            newdoc = toNewDoc(ctx, doc, name)       
            filteroptiondialog = smgr.createInstanceWithContext(uicomponent, ctx)  # UIコンポーネントをインスタンス化。
            filteroptiondialog.setSourceDocument(newdoc)  # 変換元のドキュメントを設定。。
            filteroptiondialog.setPropertyValues((PropertyValue(Name="FilterName", Value=filtername),))          
            if filteroptiondialog.execute()==ExecutableDialogResults.CANCEL:  # フィルターのオプションダイアログを表示。
                return True
            newdoc.storeToURL(filepicker.getFiles()[0], filteroptiondialog.getPropertyValues())  # storeAsURL()はだめ。
            newdoc.close(True# 新規ドキュメントを閉じないと.~lock.ExportExample.csv#といったファイルが残ってしまう。 
    def exportAsODS():  # アクティブシートをODS形式で保存する。
        title = "Export as ODS"  # ファイル選択ダイアログのタイトル。
        filtername = "calc8"  # フィルターネーム。
        exportextension = "ods"  # 拡張子。
        templatedescription = TemplateDescription.FILESAVE_AUTOEXTENSION_PASSWORD
        uiname, dummy = root[filtername].getPropertyValues(("UIName", "UIComponent"))  # フィルターのプロパティを取得。
        newfilename = "{}.{}".format(name, exportextension)  # 新規ファイル名を作成。
        kwargs = {"TemplateDescription": templatedescription, "setTitle": title, "setDisplayDirectory": fileurl, "setDefaultName": newfilename, "appendFilter": (uiname, exportextension)}
        filepicker = createFilePicker(ctx, smgr, kwargs)       
        filepicker.enableControl(ExtendedFilePickerElementIds.CHECKBOX_PASSWORD, False# パスワードチェックボックスを無効にする。
        filepicker.enableControl(ExtendedFilePickerElementIds.CHECKBOX_AUTOEXTENSION, False# 拡張子をつけるチェックボックスを無効にする。Windowsのみ関係する。
        if filepicker.execute()==ExecutableDialogResults.OK:  # ファイル保存ダイアログを表示する。
            newdoc = toNewDoc(ctx, doc, name)   
            passwordoption = filepicker.getValue(ExtendedFilePickerElementIds.CHECKBOX_PASSWORD, ControlActions.GET_SELECTED_ITEM)  # ファイル保存ダイアログのパスワードチェックボックスの状態を取得。
            if passwordoption:  # パスワードチェックボックスがチェックサれている時。
                pass  # パスワード入力ダイアログの実装が必要。
            newdoc.storeToURL(filepicker.getFiles()[0], ()) 
            newdoc.close(True# 新規ドキュメントを閉じないと.~lock.ExportExample.csv#といったファイルが残ってしまう。 
    def SelectionToNewSheet():  # 選択範囲を新しいシートに切り出す。
        newsheet = getNewSheet(doc, "Selection"# 新しいシートの取得。
        newindex = newsheet.getRangeAddress().Sheet  # 新しいシートのインデックスを取得。
        newcellranges = doc.createInstance("com.sun.star.sheet.SheetCellRanges"# 新しいシートでのセル範囲コレクション。あとでselectするために使う。
        def _copyRange(cellrange):  # セル範囲を新しいシートの同位置にコピー。
            celladdress = cellrange[0, 0].getCellAddress()  # セル範囲の左上のセルのアドレスを取得。
            celladdress.Sheet = newindex  # 新しいシートのアドレスにする。
            sheet.copyRange(celladdress, cellrange.getRangeAddress())  # セル範囲を新しいシートの同じ位置にコピー。
            cellrangeaddress = cellrange.getRangeAddress()  # セル範囲のアドレスを取得。
            cellrangeaddress.Sheet = newindex  # 新しいシートでのセル範囲のアドレスにする。
            newcellranges.addRangeAddress(cellrangeaddress, False# セル範囲コレクションに追加する。セル範囲は結合しない。
        selection = doc.getCurrentSelection()  # 選択範囲を取得。
        if selection.supportsService("com.sun.star.sheet.SheetCellRanges"):  # セル範囲コレクションの時。
            for cellrange in selection:  # 各セル範囲について。
                _copyRange(cellrange)  # セル範囲を新しいシートの同位置にコピー。  
        elif selection.supportsService("com.sun.star.sheet.SheetCellRange"):  # セル範囲の時。
            _copyRange(selection)  # セル範囲を新しいシートの同位置にコピー。
        controller = doc.getCurrentController()  # コントローラの取得。
        controller.setActiveSheet(newsheet)  # シートをアクティブにする。
        controller.select(newcellranges)  # 元のシートと同位置のセルを選択状態にする。
        cellcursor = newsheet.createCursor()  # シート全体のセルカーサーを取得。
        cellcursor.gotoEndOfUsedArea(True# 使用範囲の右下のセルまでにセルカーサーのセル範囲を変更する。
        cellcursor.getColumns().setPropertyValue("OptimalWidth", True# セルカーサーのセル範囲の列幅を最適化する。
    return exportAsCSV, exportAsPDF, exportAsODS, SelectionToNewSheet
def getBaseURL(ctx, doc):  # 埋め込みマクロ、オートメーション、マクロセレクターに対応してScriptingURLのbaseurlを返す。
    smgr = ctx.getServiceManager()  # サービスマネージャーの取得。
    modulepath = __file__  # ScriptingURLにするマクロがあるモジュールのパスを取得。ファイルのパスで場合分け。
    ucp = "vnd.sun.star.tdoc:"  # 埋め込みマクロのucp。
    if modulepath.startswith(ucp):  # 埋め込みマクロの時。__file__はvnd.sun.star.tdoc:/4/Scripts/python/filename.pyというように返ってくる。
        filepath = modulepath.replace(ucp, "")  #  ucpを除去。
        transientdocumentsdocumentcontentfactory = smgr.createInstanceWithContext("com.sun.star.frame.TransientDocumentsDocumentContentFactory", ctx)
        transientdocumentsdocumentcontent = transientdocumentsdocumentcontentfactory.createDocumentContent(doc)
        contentidentifierstring = transientdocumentsdocumentcontent.getIdentifier().getContentIdentifier()  # __file__の数値部分に該当。
        macrofolder = "{}/Scripts/python".format(contentidentifierstring.replace(ucp, ""))  #埋め込みマクロフォルダへのパス。
        location = "document"  # マクロの場所。
    else:
        filepath = unohelper.fileUrlToSystemPath(modulepath) if modulepath.startswith("file://") else modulepath # オートメーションの時__file__はシステムパスだが、マクロセレクターから実行するとfileurlが返ってくる。
        pathsubstservice = smgr.createInstanceWithContext("com.sun.star.comp.framework.PathSubstitution", ctx)
        fileurl = pathsubstservice.substituteVariables("$(user)/Scripts/python", True# $(user)を変換する。fileurlが返ってくる。
        macrofolder =  unohelper.fileUrlToSystemPath(fileurl)  # fileurlをシステムパスに変換する。マイマクロフォルダへのパス。
        location = "user"  # マクロの場所。
    relpath = os.path.relpath(filepath, start=macrofolder)  # マクロフォルダからの相対パスを取得。パス区切りがOS依存で返ってくる。
    return "vnd.sun.star.script:{}${}?language=Python&location={}".format(relpath.replace(os.sep, "|"), "{}", location)  # ScriptingURLのbaseurlを取得。Windowsのためにos.sepでパス区切りを置換。
def toNewDoc(ctx, doc, name):  # 移動元doc、移動させるシート名name
    propertyvalues = PropertyValue(Name="Hidden",Value=True),  # 新しいドキュメントのプロパティ。
    newdoc = ctx.getByName('/singletons/com.sun.star.frame.theDesktop').loadComponentFromURL("private:factory/scalc", "_blank", 0, propertyvalues)  # 新規ドキュメントの取得。
    newsheets = newdoc.getSheets()  # 新規ドキュメントのシートコレクションを取得。
    newsheets.importSheet(doc, name, 0# 新規ドキュメントにシートをコピー。
    del newsheets["Sheet1"# 新規ドキュメントのデフォルトシートを削除する。
    return newdoc
def createFilePicker(ctx, smgr, kwargs):  # ファイル選択ダイアログを返す。kwargsはFilePickerのメソッドをキー、引数を値とする辞書。
    key = "TemplateDescription"
    if key in kwargs:
        filepicker = smgr.createInstanceWithArgumentsAndContext("com.sun.star.ui.dialogs.FilePicker", (kwargs.pop(key),), ctx)  # キャッシュするとおかしくなる。
        if kwargs:
            key = "appendFilter"
            if key in kwargs:
                uiname, exportextension = kwargs.pop(key)
                displayfilter = uiname if sys.platform.startswith('win') else "{} (.{})".format(uiname, exportextension)  # 表示フィルターの作成。Windowsの場合は拡張子を含めない。
                getattr(filepicker, key)(displayfilter, "*.{}".format(exportextension))
            if kwargs:
                [getattr(filepicker, key)(val) for key, val in kwargs.items()]
        return filepicker
def getNewSheet(doc, sheetname):  # docに名前sheetnameのシートを返す。sheetnameがすでにあれば連番名を使う。
    cellflags = cf.VALUE+cf.DATETIME+cf.STRING+cf.ANNOTATION+cf.FORMULA+cf.HARDATTR+cf.STYLES
    sheets = doc.getSheets()  # シートコレクションを取得。
    c = 1  # 連番名の最初の番号。
    newname = sheetname
    while newname in sheets: # 同名のシートがあるとき。sheets[newname]ではFalseのときKeyErrorになる。
        if not sheets[newname].queryContentCells(cellflags):  # シートが未使用のとき
            return sheets[newname]  # 未使用の同名シートを返す。
        newname = "{}{}".format(sheetname, c)  # 連番名を作成。
        c += 1
    index = len(sheets)
    sheets.insertNewByName(newname, index)   # 新しいシートを挿入。同名のシートがあるとRuntimeExceptionがでる。
    if "Sheet1" in sheets:  # デフォルトシートがあるとき。
        if not sheets["Sheet1"].queryContentCells(cellflags):  # シートが未使用のとき
            del sheets["Sheet1"# シートを削除する。
    return sheets[newname]
def rowsToSheet(cellrange, datarows):  # 引数のセル範囲を左上端にして一括書き込みして列幅を最適化する。datarowsはタプルのタプル。
    datarows = tuple(zip(*zip_longest(*datarows, fillvalue="")))  # 一番長い行の長さに合わせて空文字を代入。
    sheet = cellrange.getSpreadsheet()  # セル範囲のあるシートを取得。
    cellcursor = sheet.createCursorByRange(cellrange)  # セル範囲のセルカーサーを取得。
    cellcursor.collapseToSize(len(datarows[0]), len(datarows))  # (列、行)で指定。セルカーサーの範囲をdatarowsに合せる。
    cellcursor.setDataArray(datarows)  # セルカーサーにdatarowsを代入。代入できるのは整数(int、ただしboolを除く)か文字列のみ。
    cellcursor.getColumns().setPropertyValue("OptimalWidth", True# セルカーサーのセル範囲の列幅を最適化する。
def createConfigReader(ctx, smgr):  # ConfigurationProviderサービスのインスタンスを受け取る高階関数。
    configurationprovider = smgr.createInstanceWithContext("com.sun.star.configuration.ConfigurationProvider", ctx)  # ConfigurationProviderの取得。
    def configReader(path):  # ConfigurationAccessサービスのインスタンスを返す関数。
        node = PropertyValue(Name="nodepath", Value=path)
        return configurationprovider.createInstanceWithArguments("com.sun.star.configuration.ConfigurationAccess", (node,))
    return configReader
g_exportedScripts = macro, #マクロセレクターに限定表示させる関数をタプルで指定。
文書を開いた時にこのマクロを実行するようにしています。

マクロセレクターからも実行できます。

次の関連記事:Calc(47)埋め込みマクロのためのPyDevプロジェクト

ブログ検索 by Blogger

Translate

«
Nov. 2017
»
Sun
Mon
Tue
Wed
Thu
Fri
Sat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Created by Calendar Gadget

QooQ