Class Members
It allow to set members information.
Inheritance
System.Object
Members
Implements
System.ICloneable
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class Members : Object, ICloneable
Constructors
Members(Int32, List<Int32>, Boolean, Boolean, String, String, String, Boolean)
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 |
---|---|---|
System.Int32 | ordinal | Ordinal. |
System.Collections.Generic.List<System.Int32> | index | Index. |
System.Boolean | isDrilled | Member is Drilled. |
System.Boolean | isNodeExpand | Is node expanded. |
System.String | parent | Parent. |
System.String | name | Name. |
System.String | caption | Caption. |
System.Boolean | isSelected | IsSelected. |
Properties
Caption
It allow to set the caption of a specified member.
Declaration
public string Caption { get; set; }
Property Value
Type |
---|
System.String |
Index
It allow to set index value for specific member.
Declaration
public List<int> Index { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<System.Int32> |
IsDrilled
It allow to set enable/disable drill information for specific member.
Declaration
public bool IsDrilled { get; set; }
Property Value
Type |
---|
System.Boolean |
IsNodeExpand
It allow to set the expand state of a specified member.
Declaration
public bool IsNodeExpand { get; set; }
Property Value
Type |
---|
System.Boolean |
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 |
---|
System.Boolean |
Name
It allow to set the unique name of a specified member.
Declaration
public string Name { get; set; }
Property Value
Type |
---|
System.String |
Ordinal
It allow to set ordinal value for specific member.
Declaration
public int Ordinal { get; set; }
Property Value
Type |
---|
System.Int32 |
Parent
It allow to set the parent name of a specified member.
Declaration
public string Parent { get; set; }
Property Value
Type |
---|
System.String |
Methods
Cloning(Boolean)
It allow to get cloned members information using ICloneable.
Declaration
public virtual object Cloning(bool clone = false)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | clone |
Returns
Type |
---|
System.Object |
Implements
System.ICloneable