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

E88265-01
目次に移動
目次

前
次

DirProperties

説明

ディレクトリのプロパティをフェッチします

構文

Function DirProperties (

connectionContext As String,

sourcePath As String,

) As SVReportProperty()

パラメータ

connectionContext: Oracle Business Intelligence Enterprise EditionプロバイダのURL。

sourcePath: ディレクトリのパス。

戻り値

AnalysisPropertiesの戻り値と同じです。SVReportPropertyの配列。配列の各要素は、分析の1つのプロパティを表します。SVReportPropertyの名前メンバーにはプロパティの名前が含まれ、値メンバーにはプロパティの値が含まれます。

Sub TestDirProp()

Dim BIReport As IBIReport
Set BIReport = New SmartViewOBIEEAutomation

Dim result As Variant

result = BIReport.DirProperties(“http://xxx.com:xxxx/analytics/jbips”,"/shared/SmartView/OBIEE/sv_vba_dev")

End Sub