Поделиться через


CRichEditView::OnUpdateCharEffect

The framework calls this function to update the command UI for character effect commands.

void OnUpdateCharEffect(
   CCmdUI* pCmdUI,
   DWORD dwMask,
   DWORD dwEffect 
);

Параметры

  • pCmdUI
    Pointer to a CCmdUI object.

  • dwMask
    Indicates the character formatting mask.

  • dwEffect
    Indicates the character formatting effect.

Заметки

The mask dwMask specifies which character formatting attributes to check. The flags dwEffect list the character formatting attributes to set/clear.

For more information on the dwMask and dwEffect parameters and their potential values, see the corresponding data members of CHARFORMAT in the Windows SDK.

Пример

void CMyRichEditView::OnUpdateCharItalicUI(CCmdUI* pCmdUI)
{
   OnUpdateCharEffect(pCmdUI, CFM_ITALIC, CFE_ITALIC);
}

Требования

Header: afxrich.h

См. также

Основные понятия

CRichEditView Class

CRichEditView Members

Hierarchy Chart