Vcl.Tabs.TEdgeType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TEdgeType = (etNone, etFirstIsSel, etFirstNotSel, etLastIsSel, etLastNotSel,
etNotSelToSel, etSelToNotSel, etNotSelToNotSel);

C++

enum DECLSPEC_DENUM TEdgeType : unsigned char { etNone, etFirstIsSel, etFirstNotSel, etLastIsSel, etLastNotSel, etNotSelToSel, etSelToNotSel, etNotSelToNotSel };

Properties

Type Visibility Source Unit Parent
enum public
Vcl.Tabs.pas
Vcl.Tabs.hpp
Vcl.Tabs Vcl.Tabs

Description

TEdgeType indicates the intersection type between two tabs, or the edge of a tab.

TEdgeType is used internally by the TTabSet class to represent state information about how tab edges should be displayed. The following table lists the possible values:



Value Meaning

etNone

There are no tabs to be displayed.

etFirstIsSel

The first tab is selected.

etFirstNotSel

The first tab is not selected.

etLastIsSel

The last tab is selected.

etLastNotSel

The last tab is not selected.

etNotSelToSel

The first tab is selected while the second tab is not selected.

etSelToNotSel

Both the first and second tabs are selected.

etNotSelToNotSel

Neither the first nor the second tab is selected.