| 1448 | } |
| 1449 | |
| 1450 | DWORD CRichEditUI::GetSelectionCharFormat(CHARFORMAT2 &cf) const |
| 1451 | { |
| 1452 | cf.cbSize = sizeof(CHARFORMAT2); |
| 1453 | LRESULT lResult; |
| 1454 | TxSendMessage(EM_GETCHARFORMAT, 1, (LPARAM)&cf, &lResult); |
| 1455 | return (DWORD)lResult; |
| 1456 | } |
| 1457 | |
| 1458 | bool CRichEditUI::SetSelectionCharFormat(CHARFORMAT2 &cf) |
| 1459 | { |
nothing calls this directly
no outgoing calls
no test coverage detected