ControlCharCr Field

Carriage return character: "\x000d" or "\r". Same as ParagraphBreak.

Namespace:  Aspose.Words
Assembly:  Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntax
public static readonly string Cr

Field Value

Type: String
Examples
Shows how to use control characters.
// Replace "\r" control character with "\r\n"
text = text.Replace(ControlChar.Cr, ControlChar.CrLf);
See Also