Class MemberEditorOpenEventArgs
The member editor open event arguments provide the necessary information about the selected field and its fitler settingster on before filter popup opens.
Inheritance
System.Object
MemberEditorOpenEventArgs
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class MemberEditorOpenEventArgs : Object
Constructors
MemberEditorOpenEventArgs()
Declaration
public MemberEditorOpenEventArgs()
Properties
Cancel
Defines an option to restrict the member editor popup from open.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
FieldMembers
Defines the filter members of the selected field.
Declaration
public List<TreeDataInfo> FieldMembers { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<Syncfusion.Blazor.PivotView.TreeDataInfo> |
FieldName
Defines the selected field name to perform filtering.
Declaration
public string FieldName { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
FilterSetting
Defines selected field's filter settings.
Declaration
public Filter FilterSetting { get; set; }
Property Value
Type | Description |
---|---|
Filter | A Filter object that represents the filter settings for the selected field. |