Skip to main content
All docs
V23.2

DateEditPickerStyleSettings.SecondStep Property

Gets or sets an interval between seconds in DateEdit. This is a dependency property.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v23.2.dll

NuGet Package: DevExpress.Wpf.Core

Declaration

public int? SecondStep { get; set; }

Property Value

Type Description
Nullable<Int32>

A step between available seconds. Null when the property is not specified.

Remarks

The following code sample specifies the HourStep property to 4, MinuteStep to 15, and SecondStep to 30:

<Window ...
    xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors">
    <StackPanel>
        <dxe:DateEdit Mask="HH:mm:ss" MaskType="DateTime" MaskUseAsDisplayFormat="True">
            <dxe:DateEdit.StyleSettings>
                <dxe:DateEditPickerStyleSettings HourStep="4" MinuteStep="15" SecondStep="30" />
            </dxe:DateEdit.StyleSettings>
        </dxe:DateEdit>
    </StackPanel>
</Window>

DateEditPickerStyleSettings - SecondStep

See Also