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

DxScheduler.InnerComponentSizeMode Property

Specifies the size of the Scheduler’s inner components.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[DefaultValue(null)]
[Parameter]
public SizeMode? InnerComponentSizeMode { get; set; }

#Property Value

Type Default Description
Nullable<SizeMode> null

A SizeMode enumeration value.

Available values:

Name Description
Small

Small size.

Medium

Medium size.

Large

Large size.

#Remarks

Use the InnerComponentSizeMode property to specify the size mode for the following Scheduler’s inner components:

  • The toolbar that displays the Today button, view navigator and view visible interval
  • View selector (if displayed)
  • The Appointment form‘s data editors that support size modes

The following size modes are available:

Size mode

Description

Not specified (NULL)

Scheduler’s inner components inherit their sizes from Scheduler’s parent component. For example, if Scheduler is in Form Layout, Scheduler’s inner component size is controlled by the SizeMode property.
If the parent component’s size mode is not specified, Scheduler’s inner component size is specified by the SizeMode global option.

Large

The size of Scheduler’s inner components is large.

Medium

The size of Scheduler’s inner components is medium.

Small

The size of Scheduler’s inner components is small.

The following code snippet applies the Large mode to the Scheduler’s inner components:

Razor
<DxScheduler StartDate="@DateTime.Today" DataStorage="@DataStorage" InnerComponentSizeMode="SizeMode.Large">
    <DxSchedulerDayView ShowWorkTimeOnly="true"
                        DayCount="3" />
    <DxSchedulerWeekView />
</DxScheduler>

Scheduler - The Large size mode

For more information, refer to Size Modes.

Run Demo: Scheduler - View Types

See Also