Top  | Previous | Next

system.gui.resizeComponent

Description

Sets a component's size at runtime. The coordinates work in the same way as the system.gui.moveComponent function.

Syntax

system.gui.resizeComponent(component, width, height)

Parameters

JComponent component - The component to resize

int width - The new width for the component

int height - The new height for the component

Returns

nothing

Scope

Client

Examples

This code would go in a Timer's propertyChange script for animation \

 

if event.propertyName == "value":

   newWidth = event.newValue;

   rect = event.source.parent.getComponent("Rectangle")

   system.gui.resizeComponent(newWidth, 80)

 

See also:

system.gui.reshapeComponent

system.gui.moveComponent