igniteui-react-grids
Version:
Ignite UI React grid components.
22 lines (21 loc) • 578 B
TypeScript
/**
* An interface describing settings for clipboard options
*/
export interface IgrClipboardOptions {
/**
* Enables/disables the copy behavior
*/
enabled?: boolean | string;
/**
* Include the columns headers in the clipboard output.
*/
copyHeaders?: boolean | string;
/**
* Apply the columns formatters (if any) on the data in the clipboard output.
*/
copyFormatters?: boolean | string;
/**
* The separator used for formatting the copy output. Defaults to `\t`.
*/
separator?: string;
}