diff --git a/controls/radrichtextbox/features/document-ruler.md b/controls/radrichtextbox/features/document-ruler.md
new file mode 100644
index 0000000000..1c9c4e92e6
--- /dev/null
+++ b/controls/radrichtextbox/features/document-ruler.md
@@ -0,0 +1,112 @@
+---
+title: Document Ruler
+page_title: Document Ruler
+description: Check our "Document Ruler" documentation article for the RadRichTextBox control.
+slug: radrichtextbox-features-document-ruler
+tags: document ruler, ruler, richtextbox, document editor, editor
+published: True
+---
+
+# Document Ruler
+
+The `DocumentRuler` element allows you to visualize a guide that will assist you in aligning text, tables, graphics, and other elements via the thumbs of the horizontal and vertical rulers. To display the document ruler, wrap it around a `RadRichTextBox` instance.
+
+#### __[XAML] Displaying the DocumentRuler__
+{{region radrichtextbox-features-document-ruler-0}}
+
+
+
+{{endregion}}
+
+__RadRichTextBox with DocumentRuler__
+
+![RadRichTextBox with DocumentRuler](images/radrichtextbox-features-document-ruler-0.png)
+
+## Customizing the Appearance of the Document Ruler
+
+The DocumentRuler object derives from the `DocumentRulerBase` class, which exposes the following API for customizing the appearance:
+
+* `ThumbBackgroundStyle`—This property provides the functionality to set a `Style` for the background thumbs.
+* `VerticalThumbStyle`—Gets or sets a `Style` the vertical thumb.
+* `HorizontalThumbStyle`—Gets or sets a `Style` for the horizontal thumb.
+* `MarkersBrush`—Allows you to specify a value of the type of `Brush` for the markers of the vertical and horizontal rulers.
+* `MeasurementUnit`—Allows you to specify the unit used for measurement. The property is of the type of `UnitTypes` and provides the following options:
+ * `DIP`
+ * `Point`
+ * `Pica`
+ * `Inch`
+ * `Mm`
+ * `Cm`
+ * `Twip`
+* `SectionColumnThumbStyle`—This property provides the functionality to specify a style for the section column thumb.
+* `TableColumnThumbStyle`—This property allows you to specify a style for the table column thumb.
+* `DefaultRulerThumbType`—This property provides you with the ability to set a style for the default ruler thumb.
+
+#### __[XAML] Customizing the Appearance of the Document Ruler__
+{{region radrichtextbox-features-document-ruler-1}}
+
+
+
+
+
+
+
+
+
+{{endregion}}
+
+__Customized appearance of the DocumentRuler element__
+
+![Customized appearance of the DocumentRuler element](images/radrichtextbox-features-document-ruler-1.png)
+
+## Hiding Vertical/Horizontal Ruler of the Document Ruler
+
+You can change the visibility of the vertical/horizontal ruler of the DocumentRuler control. To do so, you can utilize its `CreateHorizontalRuler` and `CreateVerticalRuler` properties. These properties will be taken into account if the DocumentRuler instance has been loaded.
+
+#### __[C#] Hiding the vertical ruler of the DocumentRuler__
+{{region radrichtextbox-features-document-ruler-2}}
+ private void DocumentRuler_Loaded(object sender, RoutedEventArgs e)
+ {
+ this.documentRuler.CreateVerticalRuler = false;
+ }
+{{endregion}}
+
+__DocumentRuler with hidden vertical ruler__
+
+![DocumentRuler with hidden vertical ruler](images/radrichtextbox-features-document-ruler-2.png)
+
+## Read-Only Support
+
+The DocumentRuler control exposes the `IsReadOnly` property. You can use it to prevent/allow the user to make changes to the document via the vertical and horizontal rulers. This property will be taken into account if the DocumentRuler control has been loaded.
+
+#### __[C#] Setting the IsReadOnly property__
+{{region radrichtextbox-features-document-ruler-2}}
+ private void DocumentRuler_Loaded(object sender, RoutedEventArgs e)
+ {
+ this.documentRuler.IsReadOnly = true;
+ }
+{{endregion}}
+
+## Customizing the Behavior of the DocumentRuler
+
+You can customize the DocumentRuler's behavior by providing a custom implementation for the [IDocumentRulerController](https://docs.telerik.com/devtools/wpf/api/telerik.windows.controls.richtextboxui.idocumentrulercontroller) interface to the `Controller` property. You can either create your own implementation of this interface or extend the default [RadRichTextBoxRulerController](https://docs.telerik.com/devtools/wpf/api/telerik.windows.controls.richtextboxui.radrichtextboxrulercontroller) class.
+
+## See Also
+* [TabStop]({%slug radrichtextbox-features-raddocumenteditor%}#raddocumenteditor-methods)
+* [Section Columns]({%slug radrichtextbox-features-section-columns%})
\ No newline at end of file
diff --git a/controls/radrichtextbox/features/images/radrichtextbox-features-document-ruler-0.png b/controls/radrichtextbox/features/images/radrichtextbox-features-document-ruler-0.png
new file mode 100644
index 0000000000..ac81a47d82
Binary files /dev/null and b/controls/radrichtextbox/features/images/radrichtextbox-features-document-ruler-0.png differ
diff --git a/controls/radrichtextbox/features/images/radrichtextbox-features-document-ruler-1.png b/controls/radrichtextbox/features/images/radrichtextbox-features-document-ruler-1.png
new file mode 100644
index 0000000000..f5b2b5aee8
Binary files /dev/null and b/controls/radrichtextbox/features/images/radrichtextbox-features-document-ruler-1.png differ
diff --git a/controls/radrichtextbox/features/images/radrichtextbox-features-document-ruler-2.png b/controls/radrichtextbox/features/images/radrichtextbox-features-document-ruler-2.png
new file mode 100644
index 0000000000..119e17d166
Binary files /dev/null and b/controls/radrichtextbox/features/images/radrichtextbox-features-document-ruler-2.png differ