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

TdxGanttControlViewPopupMenuItem Enum

Enumerates visibility settings of pop-up menu items in the Chart and Timeline Views.

#Declaration

Delphi
TdxGanttControlViewPopupMenuItem = (
    Default,
    Disabled,
    Hidden
);

#Members

Name Description
Default

The item availability depends on the context.

Example: A right-click on an empty row in the Chart View’s task sheet invokes a pop-up menu with the disabled Scroll to Task and Add to Timeline items. These items are enabled if rows have data.

Disabled

An item is visible but disabled.

Hidden

A popup menu does not display an item.

#Remarks

The following API members reference the TdxGanttControlViewPopupMenuItem type:

Chart View

Timeline View

Note

TdxGanttControlViewPopupMenuItem is a scoped enumeration type. Use the type name together with a scope resolution token (. in Delphi or :: in C++Builder) followed by an enumeration value to refer to this value. For example, use TdxGanttControlViewPopupMenuItem.Hidden (in Delphi) or TdxGanttControlViewPopupMenuItem::Hidden (in C++Builder) to refer to the Hidden value in code.

See Also