プライマリ・コンテンツへ移動
Oracle® Smart View for Office開発者ガイド

F11927-01
目次に移動
目次

前
次

GetPagePrompts

説明

ビューのページ選択を取得します。

構文

Function GetPagePrompts(

objID As String,

PageEdges() As String,

PageSelections() As String

) As Boolean

パラメータ

objID: ページ選択を取得するビューのID。空のIDが渡されると、選択したビューが使用されます。

PageEdges: 出力引数。ビューのページ・エッジの名前を戻します。

PageSelections: 出力引数。選択したページの値を戻します。

戻り値

操作が成功したかどうかを示します。

Sub TestGetPage()

Dim obiee As IBIReport
Set obiee = New SmartViewOBIEEAutomation

Dim dims() As String
Dim pageSelections() As String

obiee.GetPagePrompts Empty, dims, pageSelections

End Sub