v/vlib/clipboard
Larpon 0b046c14a8
clipboard: add doc strings to all implementations (#13932)
2022-04-05 13:06:32 +03:00
..
dummy clipboard: add doc strings to all implementations (#13932) 2022-04-05 13:06:32 +03:00
x11
README.md
clipboard.v
clipboard_android.c.v
clipboard_darwin.c.v
clipboard_darwin.m
clipboard_default.c.v
clipboard_solaris.c.v clipboard: add doc strings to all implementations (#13932) 2022-04-05 13:06:32 +03:00
clipboard_test.v
clipboard_windows.c.v

README.md

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())
}