ASPxSpinEdit.MaxValue Property
Gets or sets the maximum value of the editor.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
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