Share

CellState

C++

enum CellState {
  kCellStateNone = 0,
  kCellStateContentLocked = 0x1,
  kCellStateContentReadOnly = 0x2,
  kCellStateLinked = 0x4,
  kCellStateContentModifiedAfterUpdate = 0x8,
  kCellStateFormatLocked = 0x10,
  kCellStateFormatReadOnly = 0x20,
  kCellStateFormatModifiedAfterUpdate = 0x40,
  kAllCellStates = (kCellStateContentLocked | kCellStateContentReadOnly | kCellStateLinked | kCellStateContentModifiedAfterUpdate | kCellStateFormatLocked | kCellStateFormatReadOnly | kCellStateFormatModifiedAfterUpdate)
};

File

acdb.h

Members

Members Description
kCellStateNone None
kCellStateContentLocked Cell's content is locked. Can be unlocked by user.
kCellStateContentReadOnly Cell's content is read-only. Cannot be unlocked by user.
kCellStateLinked Cell is linked to a data source.
kCellStateContentModifiedAfterUpdate Cell's content has been modified since last update
kCellStateFormatLocked Cell's format is locked. Can be unlocked by user.
kAllCellStates Combination flag containing all cell states

Description

Cell states

Was this information helpful?