Member.DrilledDown Property

 

Indicates whether no children immediately follow the member on the axis.

Namespace:   Microsoft.AnalysisServices.AdomdClient
Assembly:  Microsoft.AnalysisServices.AdomdClient (in Microsoft.AnalysisServices.AdomdClient.dll)

Syntax

public bool DrilledDown { get; }
public:
property bool DrilledDown {
    bool get();
}
member DrilledDown : bool with get
Public ReadOnly Property DrilledDown As Boolean

Property Value

Type: System.Boolean

true if there are no child members of the current member on the axis; false if there are one or more child members of the current member on the axis.

Exceptions

Exception Condition
System.InvalidOperationException

The Member is populated by GetChildren, GetMembers, or GetSchemaObject.

Remarks

Use the DrilledDown property to determine whether there is at least one child of this member on the axis immediately following this member. This information is useful when displaying the member.

Note

Accessing this property returns a NotSupportedExeption exception if the Member is populated by GetChildren, GetMembers, or GetSchemaObject. For more information about this exception, see System.InvalidOperationException.

See Also

Member Class
Microsoft.AnalysisServices.AdomdClient Namespace

Return to top