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