Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxSchedulerNavigatorVisibilityMode Enum

Enumerates modes that determine the visibility of the resource navigator in the scheduling area.

#Declaration

Delphi
TcxSchedulerNavigatorVisibilityMode = (
    snvNever,
    snvAlways,
    snvAuto
);

#Members

Name
snvNever
snvAlways
snvAuto

#Remarks

Values include:

Value

Meaning

snvNever

The resource navigator is always hidden.

snvAlways

The resource navigator is always visible.

snvAuto

The visibility is determined automatically, i.e., the resource navigator is visible only if the following conditions are met:

  • There are least two resources in the scheduler storage associated with the scheduler.

  • Not all existing resources are currently displayed in the scheduling area (i.e., the scheduler’s OptionsView.ResourcesPerPage property value exceeds 0).

The scheduler’s ResourceNavigator.Visibility property references the TcxSchedulerNavigatorVisibilityMode type.

See Also