Document.DefaultParagraphProperties Property
Provides access to default paragraph formatting for the current document.
Namespace: DevExpress.XtraRichEdit.API.Native
Assembly: DevExpress.RichEdit.v22.1.Core.dll
Declaration
Property Value
Type | Description |
---|---|
ParagraphPropertiesBase | A ParagraphPropertiesBase interface that enables you to specify paragraph properties. |
Example
The following code snippet illustrates how to apply default character and paragraph formatting to a newly created document. The RichEditControl.EmptyDocumentCreated event is handled and the Document.DefaultParagraphProperties
and Document.DefaultCharacterProperties settings are modified.
Private Sub RichEditControl1_EmptyDocumentCreated(ByVal sender As Object, ByVal e As EventArgs)
richEditControl1.Document.DefaultCharacterProperties.ForeColor = Color.Red
richEditControl1.Document.DefaultParagraphProperties.Alignment = DevExpress.XtraRichEdit.API.Native.ParagraphAlignment.Center
richEditControl1.Document.AppendText("Document created at " & Date.Now.ToLongTimeString())
End Sub
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the DefaultParagraphProperties property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.