下面是使用该剪接板类的一个例子。
#include "Clipboard.h"
:
:
:
// Write text to the clipboard
char pastebuf[256];
strcpy (pastebuf, "Put this on the clipboard.");
CClipboard::SetText(strText);
:
:
:
// Retrieve text from the clipboard
char copybuf[256];
CClipboard::GetText(copybuf, 256);