Class CalculatedMember
Represents the calculated member element.
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 CalculatedMember : Element, ICloneable<Element>, ICloneable<CalculatedMember>
Constructors
CalculatedMember()
Initializes a new instance of the CalculatedMember class.
Declaration
public CalculatedMember()
Properties
CustomExpression
Gets or sets the custom expression.
Declaration
public string CustomExpression { get; set; }
Property Value
Type | Description |
---|---|
System.String | The custom expression. |
Expression
Gets or sets the expression which contains the formula for calculated member.
Declaration
public string Expression { get; set; }
Property Value
Type | Description |
---|---|
System.String | The expression. |
FormatString
Gets or sets the format string.
Declaration
public string FormatString { get; set; }
Property Value
Type | Description |
---|---|
System.String | The format string. |
Type
Gets or sets the type of the member.
Declaration
public TypeOfMember Type { get; set; }
Property Value
Type | Description |
---|---|
TypeOfMember | The type of the member. |
UniqueName
Gets or sets the unique name of the calculated member.
Declaration
public string UniqueName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The Unique name of the calculated member. |
Methods
AddElement(Element)
Adds the specified calculated member element.
Declaration
public void AddElement(Element element)
Parameters
Type | Name | Description |
---|---|---|
Element | element | The calculated member element to be added. |
Clone()
Clones this instance.
Declaration
public CalculatedMember Clone()
Returns
Type | Description |
---|---|
CalculatedMember | A copy of this instance. |