Dim title As String
Dim args As Object
args = ThisComponent.getArgs()
For i = 0 To Ubound(args)
If args(i).Name = "Title" Then
title = args(i).Value
Exit For
End if
Next i
MsgBox(title)
人生の最終目標は気ままな老後生活
Dim title As String
Dim args As Object
args = ThisComponent.getArgs()
For i = 0 To Ubound(args)
If args(i).Name = "Title" Then
title = args(i).Value
Exit For
End if
Next i
MsgBox(title)