Skip to main content
A newer version of this page is available. .

ASPxRichEditSimpleViewSettings.Paddings Property

Provides access to an object used to specify the simple view mode’s paddings.

Namespace: DevExpress.Web.ASPxRichEdit

Assembly: DevExpress.Web.ASPxRichEdit.v18.2.dll

Declaration

public ASPxRichEditSimpleViewPaddings Paddings { get; }

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
.SimpleView.Paddings

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>

ASPxRichEdit_SimpleView_Paddings

See Also