This topic has not yet been rated - Rate this topic

CRichEditView::OnParaAlign 

Call this function to change the paragraph alignment for the selected paragraphs.


void OnParaAlign(
   WORD wAlign 
);

Parameters

wAlign

Desired paragraph alignment. 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.

void CMyRichEditView::OnParaCenter()
{
   OnParaAlign(PFA_CENTER);
}
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.