関数とサンプル
【覚えておきたい関数】
- 行挿入:getColumns.insertByIndex(対象列,列数)
- 行削除:getColumns.removeByIndex(対象列,列数)
ソースコード
Sub Main
'アクティブシート取得
Dim oSheet As Object
oSheet = ThisComponent.CurrentController.ActiveSheet
'3列目から1列挿入
oSheet.getColumns.insertByIndex(2,1)
'1列目から1列削除
oSheet.getColumns.removeByIndex(0,1)
End Sub
実行結果
目次はこちら
>> LibreOfficeマクロ入門講座 目次