officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-document-6f103a7d.md
Provides access to default character formatting for the current document.
Namespace : DevExpress.XtraRichEdit.API.Native
Assembly : DevExpress.RichEdit.v25.2.Core.dll
NuGet Package : DevExpress.RichEdit.Core
CharacterPropertiesBase DefaultCharacterProperties { get; }
ReadOnly Property DefaultCharacterProperties As CharacterPropertiesBase
| Type | Description |
|---|---|
| CharacterPropertiesBase |
A CharacterPropertiesBase interface that enables you to specify character properties.
|
The DefaultCharacterProperties property enables you to specify default character formatting for a loaded or newly created document. These settings override the RichEditControlCompatibility.DefaultFontName and RichEditControlCompatibility.DefaultFontSize property values.
When formatting is reset by executing the ClearFormattingCommand, character properties are set to default values specified via the DefaultCharacterProperties property.
The following code snippet illustrates how to apply default character formatting to a just loaded document. The RichEditControl.DocumentLoaded event is handled and the Document.DefaultCharacterProperties settings are modified.
Private Sub RichEditControl1_DocumentLoaded(ByVal sender As Object, ByVal e As EventArgs)
richEditControl1.Document.DefaultCharacterProperties.FontName = "Arial"
richEditControl1.Document.DefaultCharacterProperties.FontSize = 16
End Sub
private void RichEditControl1_DocumentLoaded(object sender, EventArgs e) {
richEditControl1.Document.DefaultCharacterProperties.FontName = "Arial";
richEditControl1.Document.DefaultCharacterProperties.FontSize = 16;
}
See Also