File

projects/wms-framework/src/lib/baseframework/ClipboardHelper.ts

Description

Class to represent the ClipboardHelper.

Index

Methods

Methods

Static SetText
SetText(textToCopy: string)

Copy the text to the clipboard

Parameters :
Name Type Optional
textToCopy string No
Returns : void
export class ClipboardHelper {
  /**
   * Copy the text to the clipboard
   *
   * @memberof ClipboardHelper
   */
  public static SetText(textToCopy: string): void {
    navigator.clipboard.writeText(textToCopy);
  }
}

result-matching ""

    No results matching ""