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

TdxFlowChartCustomCustomizeForm Class

The base class for all classes that implement ExpressFlowChart Editor dialogs.

#Declaration

Delphi
TdxFlowChartCustomCustomizeForm = class(
    TdxForm,
    IdxFlowChartDesigner
)

#Remarks

This class implements the core functionality required by the simple and advanced flow chart editor dialogs. The TdxFlowChartCustomCustomizeForm class provides the following members that allow you to:

  • Display the Chart Editor form for a specific flow chart control (Execute);

  • Obtain the master chart symbol that follows the specified one (FindAllUnions)

  • Acess the master chart symbol of the group to which a specific chart symbol is attached (FindUnions);

  • Obtain the ordinal number of the specified master chart symbol’s group (GetNumberByUnion)

  • Identify whether a chart symbol is grouped with a specific chart symbol (IsChildItemInUnion)

  • Check if the string entry is convertible to an integer (CanKeyEnter);

  • Convert a string to an integer (IntegerToStr).

You do not need to create instances of the TdxFlowChartCustomCustomizeForm class. Use its descendants instead.

See Also