Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
See Also
Reference
CRichEditView::GetParaFormatSelection