CRichEditView::OnUpdateParaAlign
void OnParaAlign( 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.
Remarks
The framework calls this function to update the command UI for paragraph effect commands.
Example
void CMyRichEditView::OnUpdateParaCenterUI(CCmdUI* pCmdUI)
{
OnUpdateParaAlign(pCmdUI, PFA_CENTER);
}
CRichEditView Overview | Class Members | Hierarchy Chart
See Also CRichEditView::GetParaFormatSelection, CRichEditView::OnParaAlign, CRichEditView::SetParaFormat