Class IgbColumnVisibilityChangingEventArgsDetail
The event arguments when a column's visibility is changed.
The event is cancelable
It contains information about the column and the it's visibility after the operation (will be true when hiding and false when showing)
Inheritance
System.Object
IgbColumnVisibilityChangingEventArgsDetail
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbColumnVisibilityChangingEventArgsDetail : BaseRendererElement, JsonSerializable
Constructors
IgbColumnVisibilityChangingEventArgsDetail()
Declaration
public IgbColumnVisibilityChangingEventArgsDetail()
Properties
Cancel
Provides the ability to cancel the event.
Declaration
public bool Cancel { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Column
Represents the column the event originated from
Declaration
public object Column { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
NewValue
The new hidden state that the column will have, if operation is successful.
Will be true when hiding and false when showing.
Declaration
public bool NewValue { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Methods
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
| Type |
Description |
| System.Object |
|
Overrides
FromEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void FromEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
SetNativeElement(Object)
Declaration
public void SetNativeElement(object element)
Parameters
| Type |
Name |
Description |
| System.Object |
element |
|
SetNativeElementAsync(Object)
Declaration
public Task SetNativeElementAsync(object element)
Parameters
| Type |
Name |
Description |
| System.Object |
element |
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task |
|
ToEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void ToEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
Implements