AboutSupportDeveloper GuideVersion 36.122.80.11

Interface WriteAnyClipboardRequest

A generic request to write any supported data to the clipboard.

Hierarchy

  • WriteAnyClipboardRequest

Properties

Properties

data: {
    html?: string;
    rtf?: string;
    text?: string;
} & Partial<Pick<WriteImageClipboardRequest, "image">>

Data to be written

Type declaration

  • Optional html?: string
  • Optional rtf?: string
  • Optional text?: string

The type of clipboard to write to, can be 'clipboard' or 'selection'. Defaults to 'clipboard'. Use 'selection' for linux only.