ASPxRichEditSimpleViewSettings.Paddings Property
Provides access to the simple view mode’s paddings.
Namespace: DevExpress.Web.ASPxRichEdit
Assembly: DevExpress.Web.ASPxRichEdit.v24.1.dll
NuGet Package: DevExpress.Web.Office
Declaration
Property Value
Type | Description |
---|---|
ASPxRichEditSimpleViewPaddings | A ASPxRichEditSimpleViewPaddings object specifying the Simple View mode’s paddings. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to Paddings |
---|---|
ASPxRichEditViewsSettings |
|
Remarks
Use this property to specify the distance between the editing area’s boundaries and a document opened in the Simple View as demonstrated in the code snippet below:
<dx:ASPxRichEdit ID="DemoRichEdit" runat="server">
<Settings>
<Views ViewType="Simple">
<SimpleView>
<Paddings Top="100" Left="50"/>
</SimpleView>
</Views>
</Settings>
</dx:ASPxRichEdit>
See Also