Editor API Reference - v1.1.4
    Preparing search index...

    Class Clipboard

    Represents a custom clipboard with a specific name which stores a value in localStorage under that name

    Index

    Constructors

    Accessors

    Constructors

    Accessors

    • get empty(): boolean

      Gets whether the clipboard is empty

      Returns boolean

    • get value(): string | object

      Gets the value stored in the clipboard.

      Returns string | object

    • set value(value: string | object): void

      Sets the value to be stored in the clipboard. Pass null to clear the value from storage.

      Parameters

      • value: string | object

      Returns void