TableTextColumnOptionalParams are the optional parameters that control the appearance of the text column of a Table.
| 22 | // TableTextColumnOptionalParams are the optional parameters |
| 23 | // that control the appearance of the text column of a Table. |
| 24 | type TableTextColumnOptionalParams struct { |
| 25 | // ColorModelColumn is the model column containing the |
| 26 | // text color of this Table column's text, or -1 to use the |
| 27 | // default color. |
| 28 | // |
| 29 | // If CellValue for this column for any cell returns nil, that |
| 30 | // cell will also use the default text color. |
| 31 | ColorModelColumn int |
| 32 | } |
| 33 | |
| 34 | func (p *TableTextColumnOptionalParams) toLibui() *C.uiTableTextColumnOptionalParams { |
| 35 | if p == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected