API Reference > OdDb Classes > OdDbTable Class > OdDbTable Methods > OdDbTable::cellState Method
OdDbTable::cellState Method
Syntax
C++
OdDb::CellState cellState(OdInt32 row, OdInt32 col) const;
Parameters 
Description 
OdInt32 row 
[in] Row index of the cell.  
OdInt32 col 
[in] Column index of the cell.  

Cell state.

Returns the cell state. 

 

Cell state is an enumeration and takes one of the following values: 

 

Name 
Value 
kCellStateNone 
0x00 
kCellStateContentLocked 
0x01 
kCellStateContentReadOnly 
0x02 
kCellStateLinked 
0x04 
kCellStateContentModifiedAfterUpdate 
0x08 
kCellStateFormatLocked 
0x10 
kCellStateFormatReadOnly 
0x20 
kCellStateFormatModifiedAfterUpdate 
0x40 
kAllCellStates 
(kCellStateContentLocked | kCellStateContentReadOnly | 
 
kCellStateLinked | kCellStateContentModifiedAfterUpdate | 
 
kCellStateFormatLocked | kCellStateFormatReadOnly | 
 
kCellStateFormatModifiedAfterUpdate) 
Copyright © 2002–2020. Open Design Alliance. All rights reserved.