FormatFunc sets the custom format func of this TableViewColumn.
(formatFunc func(value interface{}) string)
| 350 | |
| 351 | // FormatFunc sets the custom format func of this TableViewColumn. |
| 352 | func (tvc *TableViewColumn) SetFormatFunc(formatFunc func(value interface{}) string) { |
| 353 | tvc.formatFunc = formatFunc |
| 354 | } |
| 355 | |
| 356 | func (tvc *TableViewColumn) indexInListView() int32 { |
| 357 | if tvc.tv == nil { |