v/vlib/clipboard
2024-10-12 22:17:02 +03:00
..
dummy all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
x11 all: replace fn name '@xxx' with 'xxx' (#22506) 2024-10-12 22:17:02 +03:00
clipboard.v checker: require unsafe for free() 2022-08-20 08:03:07 +03:00
clipboard_android.c.v
clipboard_darwin.c.v all: fix typos (#21089) 2024-03-25 12:18:27 +02:00
clipboard_darwin.m
clipboard_default.c.v
clipboard_solaris.c.v
clipboard_test.v
clipboard_windows.c.v fmt: remove the prefixed module name of const names, that are in the same module (related #22183) (#22185) 2024-09-10 11:25:56 +03:00
README.md doc: update trim_doc_node_description, make module readmes more uniform (#20792) 2024-02-12 12:38:47 +02:00

Description

clipboard provides access to the platform's clipboard mechanism. You can use it to read from the system clipboard, and write to it from your applications.

Examples

import clipboard

fn main() {
	mut c := clipboard.new()
	println(c.get_text())
}