* ステータスインジケータ [#j183f537] ドキュメントのステータスバーでの進行具合を表示します。 #code(basic){{ Sub StatusIndicator oDoc = ThisComponent oController = oDoc.getCurrentController() oIndicator = oController.getStatusIndicator() oIndicator.start("Started", 100) For i = 0 To 9 step 1 oIndicator.setValue(i * 10 + 10) wait(200) Next oIndicator.end() End Sub }} |