GetClipboardObjectΒΆ

GetClipboardObject reads an UniScript object from the clipboard.

obj = GetClipboardObject()

Return Value

obj is the object from the clipboard (see SetClipboardObject).

Example

obj = [. Engine =  123.123, Gearbox = "p12"];

EmptyClipboard();
SetClipboardObject(obj);

if (clipboard_is("CF_UniScriptObject")) {
   o = GetClipboardObject();
}

History

Version Description
R2014 New.

id-921278