CRichEditView::OnUpdateParaAlign
The framework calls this function to update the command UI for paragraph effect commands.
void OnUpdateParaAlign(
CCmdUI* pCmdUI,
WORD wAlign
);
Parameters
pCmdUI
Pointer to a CCmdUI object.wAlign
The paragraph alignment to check. One of the following values:PFA_LEFT Align the paragraphs with the left margin.
PFA_RIGHT Align the paragraphs with the right margin.
PFA_CENTER Center the paragraphs between the margins.
Example
void CMyRichEditView::OnUpdateParaCenterUI(CCmdUI* pCmdUI)
{
OnUpdateParaAlign(pCmdUI, PFA_CENTER);
}
Requirements
Header: afxrich.h