Share

TableBreakFlowDirection

C++

enum TableBreakFlowDirection {
  kTableBreakFlowRight = 0x1,
  kTableBreakFlowDownOrUp = 0x2,
  kTableBreakFlowLeft = 0x4
};

File

acdb.h

Members

Members Description
kTableBreakFlowRight Break tables in left to right direction
kTableBreakFlowDownOrUp Break tables in top to bottom (for top to bottom flow table) or bottom to top (for bottom to top flow table) directions
kTableBreakFlowLeft Break tables in right to left direction

Description

Table breaking flow direction options

Was this information helpful?