DimensionAttribute.MembersWithData Property

 

Applies To: SQL Server 2016 Preview

Gets or sets whether to display data members for non-leaf members in the parent attribute.

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

Syntax

[DefaultValueAttribute(MembersWithData.NonLeafDataVisible)]
public MembersWithData MembersWithData { get; set; }
public:
[DefaultValueAttribute(MembersWithData::NonLeafDataVisible)]
property MembersWithData MembersWithData {
    MembersWithData get();
    void set(MembersWithData value);
}
[<DefaultValueAttribute(MembersWithData.NonLeafDataVisible)>]
member MembersWithData : MembersWithData with get, set
<DefaultValueAttribute(MembersWithData.NonLeafDataVisible)>
Public Property MembersWithData As MembersWithData

Property Value

Type: Microsoft.AnalysisServices.MembersWithData

A MembersWithData object determining whether to display data members for non-leaf members in the parent attribute.

Remarks

The value of the MembersWithData property is used only by parent attributes (that is, the value of the Usage property is set to Parent) to determine whether to display data members for non-leaf members in the parent attribute. For more information about data members, see Attributes in Parent-Child Hierarchies.

The value of this property can be:

Value

Description

NonLeafDataHidden

Non-leaf data is hidden.

NonLeafDataVisible

Non-leaf data is visible.

See Also

DimensionAttribute Class
Microsoft.AnalysisServices Namespace

Return to top