Analysis Services Programming
Description (clsServer)
The Description property of an object of ClassType clsServer contains the server description.
Data Type
String
Access
Read/write
Example
The following code example prints the Description property of an object of ClassType clsServer to the Debug window.
Dim dsoServer As New DSO.Server
' Connect to the local Analysis server.
dsoServer.Connect "LocalHost"
' Print the Description property to the Debug window.
Debug.Print dsoServer.Description