TableColumn
Contents
[
Hide
]Inheritance: java.lang.Object
public final class TableColumn
Represents a table column.
Constructors
Constructor | Description |
---|---|
TableColumn() |
Methods
Method | Description |
---|---|
getWidth() | Gets the width. |
setWidth(float value) | Sets the width. |
getLockedWidth() | Gets a value indicating whether a table column has locked width and does not resize automatically to fit table content. |
setLockedWidth(boolean value) | Sets a value indicating whether a table column has locked width and does not resize automatically to fit table content. |
TableColumn()
public TableColumn()
getWidth()
public float getWidth()
Gets the width.
Returns: float
setWidth(float value)
public void setWidth(float value)
Sets the width.
Parameters:
Parameter | Type | Description |
---|---|---|
value | float |
getLockedWidth()
public boolean getLockedWidth()
Gets a value indicating whether a table column has locked width and does not resize automatically to fit table content. By default, column width is not locked.
Returns: boolean
setLockedWidth(boolean value)
public void setLockedWidth(boolean value)
Sets a value indicating whether a table column has locked width and does not resize automatically to fit table content. By default, column width is not locked.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |