Class DateMembers
It allow to set date members information.
Implements
Inherited Members
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class DateMembers : ICloneable
Constructors
DateMembers(string, dynamic)
Initializes a new instance of the DateMembers class. It allow to set date members information from given parameters.
Declaration
public DateMembers(string formattedText = null, dynamic actualText = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | formattedText | Formatted Text. |
| dynamic | actualText | Actual Text. |
Properties
ActualText
It allow to set actual value for specific member.
Declaration
public dynamic ActualText { get; set; }
Property Value
| Type |
|---|
| dynamic |
FormattedText
It allow to set formatted text for specific member.
Declaration
public string FormattedText { get; set; }
Property Value
| Type |
|---|
| string |
Methods
Cloning()
It allow to get cloned date members information using ICloneable.
Declaration
public virtual dynamic Cloning()
Returns
| Type | Description |
|---|---|
| dynamic | cloned date members. |