Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.rebellapp.com/llms.txt

Use this file to discover all available pages before exploring further.

Read text content from the device clipboard.

Parameters

PropertyTypeRequiredDescription
successFunctionNoCallback with clipboard content
failFunctionNoCallback on failure
completeFunctionNoCallback that always executes

Success Callback

PropertyTypeDescription
textStringClipboard text content

Code Example

my.getClipboard({
  success: (res) => {
    console.log('Clipboard:', res.text);
  }
});