Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
BOOLFmtLines(BOOLbAddEOL**);**
Return Value
Nonzero if any formatting occurs; otherwise 0.
Parameters
bAddEOL
Specifies whether soft line-break characters are to be inserted. A value of TRUE inserts the characters; a value of FALSE removes them.
Remarks
Call this function to set the inclusion of soft line-break characters on or off within a multiple-line edit control. A soft line break consists of two carriage returns and a linefeed inserted at the end of a line that is broken because of word wrapping. A hard line break consists of one carriage return and a linefeed. Lines that end with a hard line break are not affected by FmtLines.
Windows will only respond if the CEdit object is a multiple-line edit control.
FmtLines only affects the buffer returned by GetHandle and the text returned by . It has no impact on the display of the text within the edit control.
For more information, see in the Win32 documentation.
Example
#ifdef _DEBUG
// The pointer to my edit.
extern CEdit* pmyEdit;
CString strText;
// Add soft line-break breaks.
pmyEdit->FmtLines(TRUE);
// Dump the text of the edit control.
pmyEdit->GetWindowText(strText);
afxDump << strText;
// Remove soft line-break breaks.
pmyEdit->FmtLines(FALSE);
#endif
CEdit Overview | Class Members | Hierarchy Chart
See Also CEdit::GetHandle, CWnd::GetWindowText