Skip to main content

TdxGanttControlViewPopupMenuItem Enum

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

Declaration

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