Class IgbGridPinningActions
Grid Pinning Actions for the Action Strip
@igxParent IgxActionStripComponent
Inheritance
System.Object
IgbGridPinningActions
Implements
System.IDisposable
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbGridPinningActions : IgbGridActionsBaseDirective, JsonSerializable, IDisposable
Constructors
IgbGridPinningActions()
Declaration
public IgbGridPinningActions()
Properties
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Methods
EnsureModulesLoaded()
Declaration
protected override void EnsureModulesLoaded()
Overrides
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
| Type |
Description |
| System.Object |
|
Overrides
Pin(Object)
Declaration
public void Pin(object evt)
Parameters
| Type |
Name |
Description |
| System.Object |
evt |
|
PinAsync(Object)
Pin the row according to the context.
@example
this.gridPinningActions.pin();
Declaration
public Task PinAsync(object evt)
Parameters
| Type |
Name |
Description |
| System.Object |
evt |
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task |
|
Declaration
public void ScrollToRow(object evt)
Parameters
| Type |
Name |
Description |
| System.Object |
evt |
|
Declaration
public Task ScrollToRowAsync(object evt)
Parameters
| Type |
Name |
Description |
| System.Object |
evt |
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task |
|
Unpin(Object)
Declaration
public void Unpin(object evt)
Parameters
| Type |
Name |
Description |
| System.Object |
evt |
|
UnpinAsync(Object)
Unpin the row according to the context.
@example
this.gridPinningActions.unpin();
Declaration
public Task UnpinAsync(object evt)
Parameters
| Type |
Name |
Description |
| System.Object |
evt |
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task |
|
Implements
System.IDisposable