関数とサンプル
【覚えておきたい関数・変数】
- 文字列型:String
- 数値型:Integer
- セル.value = 数値
- セル.String = "文字列"
ソースコード
Sub Main
'アクティブシート取得
Dim oSheet As Object
oSheet = ThisComponent.CurrentController.ActiveSheet
Dim oCell As Object
Dim oCell2 As Object
'セル指定 A1
oCell = oSheet.getCellByPosition(0,0)
oCell.String = "あいうえお"
'セル指定 A2
oCell2 = oSheet.getCellByPosition(1,0)
oCell2.Value = 123
Dim s As String
s = oCell.String
Dim a As Integer
a = oCell2.Value
MsgBox(s + a)
End Sub
実行結果
目次はこちら
>> LibreOfficeマクロ入門講座 目次