Skip to main content

SchedulerSelectionBarOptions.Height Property

Gets or sets the height of the selection bar in pixels.

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v14.2.dll

#Declaration

public int Height { get; set; }

#Property Value

Type Description
Int32

An integer value.

#Property Paths

You can access the SchedulerSelectionBarOptions.Height property from the following objects:

Object Type Path to Height
TimelineView
.SelectionBar.Height

#Examples

This example demonstrates how to specify the appearance of the selection bar in the Timeline View using the TimelineView.SelectionBar property.

<dxsch:SchedulerControl.TimelineView>
    <dxsch:TimelineView>
        <dxsch:TimelineView.SelectionBar>
            <dxsch:SchedulerSelectionBarOptions Visible="True" Height="20"/>
        </dxsch:TimelineView.SelectionBar>
    </dxsch:TimelineView>
</dxsch:SchedulerControl.TimelineView>
See Also