マクロ/Pythonガイド/Calc/Calc範囲
< Macros | Python Guide | Calc
TDF LibreOffice Document Liberation Project Community Blogs Weblate Nextcloud Redmine Ask LibreOffice Donate
範囲
注意: 便利な関数から、関数 msgbox
をコピー、あるいは、インポートします。
名前からセルを取得する
doc = XSCRIPTCONTEXT.getDocument()
sheet = doc.CurrentController.ActiveSheet
cell = sheet['A1']
msgbox(cell.AbsoluteName)
位置からセルを取得する
doc = XSCRIPTCONTEXT.getDocument()
sheet = doc.CurrentController.ActiveSheet
# Cell C6
row = 5
column = 2
cell = sheet[row,column]
msgbox(cell.AbsoluteName)