windowsforms-devexpress-dot-xtrascheduler-dot-scheduleroptionsview-b14119c9.md
Gets or sets the visibility of the scheduler’s tooltips.
Namespace : DevExpress.XtraScheduler
Assembly : DevExpress.XtraScheduler.v25.2.dll
NuGet Package : DevExpress.Win.Scheduler
[DefaultValue(ToolTipVisibility.Standard)]
[XtraSerializableProperty]
public ToolTipVisibility ToolTipVisibility { get; set; }
<DefaultValue(ToolTipVisibility.Standard)>
<XtraSerializableProperty>
Public Property ToolTipVisibility As ToolTipVisibility
| Type | Default | Description |
|---|---|---|
| ToolTipVisibility | Standard |
A ToolTipVisibility enumeration value which specifies the visibility of the tool tips.
|
Available values:
| Name | Description |
|---|---|
| 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.
|
You can access this nested property as listed below:
| Object Type | Path 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
schedulerControl1.OptionsCustomization.AllowDisplayAppointmentFlyout = false;
schedulerControl1.OptionsView.ToolTipVisibility = ToolTipVisibility.Always;
#endregion #AllowDisplayAppointmentFlyout
winforms-scheduler-display-custom-tooltips/CS/Form1.cs#L17
schedulerControl1.OptionsView.ToolTipVisibility = ToolTipVisibility.Always;
}
winforms-scheduler-customize-appointment-flyout/VB/CustomAppointmentFlyoutExample/Form1.vb#L118
#End Region ' #AllowDisplayAppointmentFlyout
schedulerControl1.OptionsView.ToolTipVisibility = ToolTipVisibility.Always
Else
winforms-scheduler-display-custom-tooltips/VB/Form1.vb#L17
SetupSampleAppointment()
schedulerControl1.OptionsView.ToolTipVisibility = ToolTipVisibility.Always
End Sub
See Also