The EM_GETPARAFORMAT message retrieves the paragraph formatting of the current selection in a rich edit control.
EM_GETPARAFORMAT wParam = 0; lParam = (LPARAM) (PARAFORMAT FAR *) lpFmt;
If more than one paragraph is selected, the structure receives the attributes of the first paragraph, and the dwMask member specifies which attributes are consistent throughout the entire selection.
Returns the value of the dwMask member of the PARAFORMAT structure.
Questions: