Class MemberPropertyCollection
A Collection of properties.
Inheritance
System.Object
MemberPropertyCollection
Namespace: Syncfusion.Olap.UWP.Reports
Assembly: Syncfusion.Olap.UWP.dll
Syntax
public class MemberPropertyCollection : Collection<MemberProperty>
Constructors
MemberPropertyCollection()
Declaration
public MemberPropertyCollection()
Methods
Add(String, String)
Adds the member property with specified name and unique name,
Declaration
public void Add(string name, string uniqueName)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the member property. |
System.String | uniqueName | The unique name of the member property. |
FindByName(String)
Finds the member property by its name.
Declaration
public MemberProperty FindByName(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the property to be found. |
Returns
Type | Description |
---|---|
MemberProperty | The member property from the collection |