Back to Devexpress

SchedulerOptionsView.ToolTipVisibility Property

windowsforms-devexpress-dot-xtrascheduler-dot-scheduleroptionsview-b14119c9.md

latest4.2 KB
Original Source

SchedulerOptionsView.ToolTipVisibility Property

Gets or sets the visibility of the scheduler’s tooltips.

Namespace : DevExpress.XtraScheduler

Assembly : DevExpress.XtraScheduler.v25.2.dll

NuGet Package : DevExpress.Win.Scheduler

Declaration

csharp
[DefaultValue(ToolTipVisibility.Standard)]
[XtraSerializableProperty]
public ToolTipVisibility ToolTipVisibility { get; set; }
vb
<DefaultValue(ToolTipVisibility.Standard)>
<XtraSerializableProperty>
Public Property ToolTipVisibility As ToolTipVisibility

Property Value

TypeDefaultDescription
ToolTipVisibilityStandard

A ToolTipVisibility enumeration value which specifies the visibility of the tool tips.

|

Available values:

NameDescription
Never

Tooltips are never shown.

| | Standard |

Tooltips are shown only when the text is partially or completely hidden and the mouse pointer has hovered over the object for a short while.

| | Always |

Tooltips are always shown after a mouse pointer hovers over the object for some time.

|

Property Paths

You can access this nested property as listed below:

Object TypePath to ToolTipVisibility
SchedulerControl

.OptionsView .ToolTipVisibility

|

The following code snippets (auto-collected from DevExpress Examples) contain references to the ToolTipVisibility property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

winforms-scheduler-customize-appointment-flyout/CS/CustomAppointmentFlyoutExample/Form1.cs#L107

csharp
schedulerControl1.OptionsCustomization.AllowDisplayAppointmentFlyout = false;
schedulerControl1.OptionsView.ToolTipVisibility = ToolTipVisibility.Always;
#endregion #AllowDisplayAppointmentFlyout

winforms-scheduler-display-custom-tooltips/CS/Form1.cs#L17

csharp
schedulerControl1.OptionsView.ToolTipVisibility = ToolTipVisibility.Always;
}

winforms-scheduler-customize-appointment-flyout/VB/CustomAppointmentFlyoutExample/Form1.vb#L118

vb
#End Region ' #AllowDisplayAppointmentFlyout
                schedulerControl1.OptionsView.ToolTipVisibility = ToolTipVisibility.Always
            Else

winforms-scheduler-display-custom-tooltips/VB/Form1.vb#L17

vb
SetupSampleAppointment()
    schedulerControl1.OptionsView.ToolTipVisibility = ToolTipVisibility.Always
End Sub

See Also

SchedulerOptionsView Class

SchedulerOptionsView Members

DevExpress.XtraScheduler Namespace