Class BOBDataGridCopyEventArgs<TItem>
- Namespace
- BlazOrbit.Components
- Assembly
- BlazOrbit.dll
Payload delivered to OnCopy after the grid has written the snapshot to the system clipboard. The consumer typically uses Items.Count for a confirmation toast, or inspects Tsv / Html for logging and analytics.
public sealed class BOBDataGridCopyEventArgs<TItem>
Type Parameters
TItemRow item type.
- Inheritance
-
objectBOBDataGridCopyEventArgs<TItem>
Constructors
BOBDataGridCopyEventArgs()
public BOBDataGridCopyEventArgs()
Properties
Html
HTML <table> payload that was written as text/html.
public required string Html { get; init; }
Property Value
- string
Items
Snapshot of rows that were serialised — the current filtered + sorted view.
public required IReadOnlyList<TItem> Items { get; init; }
Property Value
- IReadOnlyList<TItem>
Tsv
Tab-separated payload that was written as text/plain.
public required string Tsv { get; init; }
Property Value
- string