Class CalculatedMember
Represents the calculated member element.
Inherited Members
Namespace: Syncfusion.Olap.UWP.Reports
Assembly: Syncfusion.Olap.UWP.dll
Syntax
public class CalculatedMember : Element
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. |