Class MemberProperty
Represents the member property of various objects.
Inheritance
System.Object
MemberProperty
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Olap.Reports
Assembly: Syncfusion.Olap.Base.dll
Syntax
public class MemberProperty : ICloneable<MemberProperty>
Constructors
MemberProperty()
Initializes a new instance of the MemberProperty class.
Declaration
public MemberProperty()
MemberProperty(String, String)
Initializes a new instance of the MemberProperty class.
Declaration
public MemberProperty(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. |
Properties
Name
Gets the name of the member property.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the member property. |
UniqueName
Gets the unique name of the member property.
Declaration
public string UniqueName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The unique name of the member property. |
Methods
Clone()
Clones this instance.
Declaration
public MemberProperty Clone()
Returns
Type | Description |
---|---|
MemberProperty | A copy of this instance. |