TableItemProps
Hierarchy
- TableItemProps
Index
Properties
- background
- cellPosition
- checkState
- data
- flags
- font
- foreground
- hintSize
- icon
- selected
- statusTip
- text
- textAlignment
- toolTip
- whatsThis
Properties
Optional
background
• background? : QBrush
cellPosition
• cellPosition: CellPosition
position of this item in the Table
tuple
[row: number, column: number]
Optional
checkState
• checkState? : CheckState
Optional
data
• data? : TableData
Optional
flags
• flags? : ItemFlag
handle the behavior of the TableItem
following example makes the item non-editable+selectable only checkable
example
<TableItem flags={ItemFlag.ItemIsEnabled | ItemFlag.ItemIsUserCheckable} {...props}/>
Optional
font
• font? : QFont
Optional
foreground
• foreground? : QBrush
Optional
hintSize
• hintSize? : QSize
Optional
icon
• icon? : QIcon
Optional
selected
• selected? : undefined | false | true
Optional
statusTip
• statusTip? : undefined | string
Optional
text
• text? : undefined | string
Optional
textAlignment
• textAlignment? : AlignmentFlag
Optional
toolTip
• toolTip? : undefined | string
Optional
whatsThis
• whatsThis? : undefined | string