dropColumnFormats
The dropColumnFormats
method removes color formatting from all columns of a table.
Syntax
table.dropColumnFormats()
Parameters
This method takes no parameters.
Returns
A new table with all color formatting removed.
Examples
source = newTable(
intCol("X", 1,2,3,4,5),
intCol("Y", 6,7,8,9,3),
).formatColumnWhere("Y", "X > 3", "RED")
result = source.dropColumnFormats()
- result
- source