Class Members
It allow to set members information.
Implements
Inherited Members
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class Members : ICloneable
Constructors
Members(int, List<int>, bool, bool, string, string, string, bool)
Initializes a new instance of the Members class. It allow to set members information from given parameters.
Declaration
public Members(int ordinal = 0, List<int> index = null, bool isDrilled = false, bool isNodeExpand = false, string parent = null, string name = null, string caption = null, bool isSelected = false)
Parameters
| Type | Name | Description |
|---|---|---|
| int | ordinal | Ordinal. |
| List<int> | index | Index. |
| bool | isDrilled | Member is Drilled. |
| bool | isNodeExpand | Is node expanded. |
| string | parent | Parent. |
| string | name | Name. |
| string | caption | Caption. |
| bool | isSelected | IsSelected. |
Properties
Caption
It allow to set the caption of a specified member.
Declaration
public string Caption { get; set; }
Property Value
| Type |
|---|
| string |
Index
It allow to set index value for specific member.
Declaration
public List<int> Index { get; set; }
Property Value
| Type |
|---|
| List<int> |
IsDrilled
It allow to set enable/disable drill information for specific member.
Declaration
public bool IsDrilled { get; set; }
Property Value
| Type |
|---|
| bool |
IsNodeExpand
It allow to set the expand state of a specified member.
Declaration
public bool IsNodeExpand { get; set; }
Property Value
| Type |
|---|
| bool |
IsSelected
It allow to set whether the specified member is either selected or not for filtering.
Declaration
public bool IsSelected { get; set; }
Property Value
| Type |
|---|
| bool |
Name
It allow to set the unique name of a specified member.
Declaration
public string Name { get; set; }
Property Value
| Type |
|---|
| string |
Ordinal
It allow to set ordinal value for specific member.
Declaration
public int Ordinal { get; set; }
Property Value
| Type |
|---|
| int |
Parent
It allow to set the parent name of a specified member.
Declaration
public string Parent { get; set; }
Property Value
| Type |
|---|
| string |
Methods
Cloning(bool)
It allow to get cloned members information using ICloneable.
Declaration
public virtual object Cloning(bool clone = false)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | clone |
Returns
| Type |
|---|
| object |