Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
The Clipboard class is part of the System.Windows.Forms namespace. The class is sealed and has no public constructors. You can't instantiate it, and you can't inherit from it. The class has no properties and just two static methods, one of which comes in two versions. You use these methods to set data to the clipboard or get data out:
void SetDataObject(object obj) void SetDataObject(object obj, bool bRemainAfterExit) IDataObject GetDataObject() |