1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/clipboard
2022-01-07 13:28:50 +02:00
..
dummy
x11
clipboard_android.c.v
clipboard_darwin.c.v
clipboard_darwin.m
clipboard_default.c.v
clipboard_solaris.c.v
clipboard_test.v
clipboard_windows.c.v
clipboard.v docs: add more documentation to each of the modules in vlib (#13043) 2022-01-07 13:28:50 +02:00
README.md docs: add more documentation to each of the modules in vlib (#13043) 2022-01-07 13:28:50 +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())
}