Share

CellContentLayout

C++

enum CellContentLayout {
  kCellContentLayoutFlow = 0x1,
  kCellContentLayoutStackedHorizontal = 0x2,
  kCellContentLayoutStackedVertical = 0x4
};

File

acdb.h

Members

Members Description
kCellContentLayoutFlow Contents flow from left to right and top to bottom.
kCellContentLayoutStackedHorizontal Contents are stacked side by side
kCellContentLayoutStackedVertical Contents are stacked one above other

Description

Content cell layout options

Was this information helpful?