HypIsConnectedToSharedConnections

データ・プロバイダ・タイプ: Essbase、Planning、Financial Management、Hyperion Enterprise

説明

HypIsConnectedToSharedConnections()は、SmartViewが共有接続に接続されているかどうかを判別します。

構文

HypIsConnectedToSharedConnections ()

戻り値

戻り値: Smart Viewが共有接続に接続されている場合はTrue、それ以外の場合はFalse。

      Declare Function HypIsConnectedToSharedConnections Lib "HsAddin" () As Variant
Sub Example_HypIsConnectedToSharedConnections()
Dim vtRet As Variant
vtRet = HypIsConnectedToSharedConnections ()
MsgBox(vtRet)
End Sub