ResizeColumn Method (JTable)

Class

JTable.

Action

Resizes the specified column.

Syntax

C#
table.ResizeColumn(column, width)
VB
table.ResizeColumn(column, width)
Variable Description
column The name or index of the column to resize. ItemIdentifier.
width The new width for the column. Integer.

Examples

VB

table.ResizeColumn("Street", 150)
table.ResizeColumn(3, 150)