Skip to main content

SchedulerSelectionBarOptions.Visible Property

Gets or sets a value indicating whether the selection bar is visible.

Namespace: DevExpress.Xpf.Scheduler

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

#Declaration

public bool Visible { get; set; }

#Property Value

Type Description
Boolean

true if the selection bar is visible; otherwise, false.

#Property Paths

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

Object Type Path to Visible
TimelineView
.SelectionBar.Visible

#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