CWnd::OpenClipboard
Abra el portapapeles.
BOOL OpenClipboard( );
Valor devuelto
Distinto de cero si el portapapeles se abre mediante CWnd, o 0 si otra aplicación o ventana tiene el portapapeles abierto.
Comentarios
Otras aplicaciones no podrá modificar el portapapeles hasta que se llame a la función de CloseClipboard Windows.
El objeto actual de CWnd no sentirá en el propietario del portapapeles hasta que se llame a la función de EmptyClipboard Windows.
Ejemplo
//handler for Edit | Copy menu
void CMdiView::OnEditCopy()
{
if (!OpenClipboard())
{
AfxMessageBox(_T("Cannot open the Clipboard"));
return;
}
// Remove the current Clipboard contents
if(!EmptyClipboard())
{
AfxMessageBox(_T("Cannot empty the Clipboard"));
return;
}
// Get the currently selected data, hData handle to
// global memory of data
CString str;
m_Edit.GetWindowText(str);
size_t cbStr = (str.GetLength() + 1) * sizeof(TCHAR);
HGLOBAL hData = GlobalAlloc(GMEM_MOVEABLE, cbStr);
memcpy_s(GlobalLock(hData), cbStr, str.LockBuffer(), cbStr);
GlobalUnlock(hData);
str.UnlockBuffer();
// For the appropriate data formats...
UINT uiFormat = (sizeof(TCHAR) == sizeof(WCHAR)) ? CF_UNICODETEXT : CF_TEXT;
if (::SetClipboardData(uiFormat, hData) == NULL)
{
AfxMessageBox(_T("Unable to set Clipboard data"));
CloseClipboard();
return;
}
CloseClipboard();
}
Requisitos
encabezado: afxwin.h