projects/wms-framework/src/lib/baseframework/ClipboardHelper.ts
Class to represent the ClipboardHelper.
Methods |
|
Static SetText | ||||||
SetText(textToCopy: string)
|
||||||
Copy the text to the clipboard
Parameters :
Returns :
void
|
export class ClipboardHelper {
/**
* Copy the text to the clipboard
*
* @memberof ClipboardHelper
*/
public static SetText(textToCopy: string): void {
navigator.clipboard.writeText(textToCopy);
}
}