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

ASPxDiagram.SettingsPage Property

Contains page settings.

Namespace: DevExpress.Web.ASPxDiagram

Assembly: DevExpress.Web.ASPxDiagram.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public DiagramPageSettings SettingsPage { get; }

Property Value

Type Description
DiagramPageSettings

An object that contains the page settings.

Remarks

<dx:ASPxDiagram ID="Diagram" runat="server" Units="Cm" >
    <SettingsPage Width="21" Height="29.7" Color="#ccffcc" Orientation="Landscape" />
</dx:ASPxDiagram>

Diagram page settings are stored in a diagram model. When the model is read-only (the ReadOnly property is set to true) page settings specified via the SettingsPage property are not in effect.

If you call the server Import(String) or client Import(data) method, the method applies the imported page settings and the SettingsPage properties are ignored.

See Also