Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

RibbonItemCollectionBuilder<TItemCollectionBuilder>.AddNumberBox(String, String, Boolean, Int32, Int32, Int32, Int32, String, Int32) Method

Adds a new number box item to the end of the ribbon item collection.

Namespace: DevExpress.AspNetCore.Office

Assembly: DevExpress.AspNetCore.Common.v24.2.dll

NuGet Package: DevExpress.AspNetCore.Common

#Declaration

C#
public TItemCollectionBuilder AddNumberBox(
    string text,
    string name,
    bool beginGroup,
    int min,
    int max,
    int step,
    int width,
    string format = null,
    int value = 0
)

#Parameters

Name Type Description
text String

The item’s text.

name String

The item’s command name.

beginGroup Boolean

true, to display a separator before the item; otherwise, false.

min Int32

The minimum item value.

max Int32

The maximum item value.

step Int32

The incremental step.

width Int32

The item width.

#Optional Parameters

Name Type Default Description
format String null

The value’s display format.

value Int32 0

The item value.

#Returns

Type Description
TItemCollectionBuilder

An item collection builder.

See Also