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

ASPxSpinEdit.MaxValue Property

Gets or sets the maximum value of the editor.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

[DefaultValue(typeof(decimal), "0")]
public decimal MaxValue { get; set; }

Property Value

Type Default Description
Decimal "0"

A Decimal value representing the maximum value of the editor.

Remarks

This property is a wrapper of the SpinEditProperties.MaxValue property.

Example

The complete sample project is available in the DevExpress Code Central database at E55.

...
<dxe:ASPxSpinEdit ID="spnLeft" runat="server" Width="60px" Height="21px" 
Number="600" MinValue="0" MaxValue="2000" AllowNull="False">
</dxe:ASPxSpinEdit>
...
See Also