ShowLevelProperties (Property)

Applies To:

OLAPConnection object (OLE DB only)

Description:

Enables you to show any description association with a level.

Action:

Read only, Boolean

Example:

This example shows how to display in a text box if level properties are shown in the query:

var xxx=ActiveDocument.Sections["OLAPQuery"].Connection.ShowLevelProperties

if (xxx==true)
{
TextBox1.Text = "Levels are shown"
}
else (xxx==false)
{
TextBox1.Text = "Levels are not shown"
}