Class Table.ColumnResizeEvent

  • All Implemented Interfaces:
    Serializable
    Enclosing class:
    Table

    @Deprecated
    public static class Table.ColumnResizeEvent
    extends Component.Event
    Deprecated.
    This event is fired when a column is resized. The event contains the columns property id which was fired, the previous width of the column and the width of the column after the resize.
    See Also:
    Serialized Form
    • Field Detail

      • COLUMN_RESIZE_METHOD

        public static final Method COLUMN_RESIZE_METHOD
        Deprecated.
    • Constructor Detail

      • ColumnResizeEvent

        public ColumnResizeEvent​(Component source,
                                 Object propertyId,
                                 int previous,
                                 int current)
        Deprecated.
        Constructor.
        Parameters:
        source - The source of the event
        propertyId - The columns property id
        previous - The width in pixels of the column before the resize event
        current - The width in pixels of the column after the resize event
    • Method Detail

      • getPropertyId

        public Object getPropertyId()
        Deprecated.
        Get the column property id of the column that was resized.
        Returns:
        The column property id
      • getPreviousWidth

        public int getPreviousWidth()
        Deprecated.
        Get the width in pixels of the column before the resize event.
        Returns:
        Width in pixels
      • getCurrentWidth

        public int getCurrentWidth()
        Deprecated.
        Get the width in pixels of the column after the resize event.
        Returns:
        Width in pixels