MCPcopy Create free account
hub / github.com/cinience/RedisStudio / CharFromPos

Method CharFromPos

DuiLib/Control/UIRichEdit.cpp:1597–1604  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1595}
1596
1597int CRichEditUI::CharFromPos(CPoint pt) const
1598{
1599 POINTL ptl = {pt.x, pt.y};
1600 if( !m_pTwh ) return 0;
1601 LRESULT lResult;
1602 TxSendMessage(EM_CHARFROMPOS, 0, (LPARAM)&ptl, &lResult);
1603 return (int)lResult;
1604}
1605
1606void CRichEditUI::EmptyUndoBuffer()
1607{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected