Share

FlowDirection

C++

enum FlowDirection {
  kTtoB = 0,
  kBtoT = 1
};

File

acdb.h

Members

Members Description
kTtoB The table will be drawn from top to bottom.
kBtoT The table will be drawn from bottom to top.

Description

Indicates the order in which the table will be drawn.

Was this information helpful?