1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/clipboard
2023-02-11 11:22:31 +02:00
..
dummy
x11 checker: check nested struct field with required attr (fix #10913) (#17277) 2023-02-11 11:22:31 +02:00
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 checker: fix nested struct reference type field initialized check. (fix: #15741) (#15752) 2022-09-15 07:59:31 +03:00
clipboard.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())
}