DblClick example for C++ 5.0 and later
This example demonstrates the DblClick event.
void CTutorDlg::OnDblClickLeadrasterview1()
{
ILEADRasterProcess *pRasterProc=NULL;
CoCreateInstance(CLSID_LEADRasterProcess, NULL, CLSCTX_ALL,
IID_ILEADRasterProcess, (void**)&pRasterProc);
// TODO: Add your control notification handler code here
pRasterProc->Flip(m_LEADRasterView1.GetRaster()); //Just test the event
m_LEADRasterView1.ForceRepaint();
pRasterProc->Release();
}