Resize event example for Visual J++

This example demonstates the Resize event.

private void LEAD1_ctlResize(Object source, Event e)
{
   // Before using this example you must add an edit box to your form.
   // Then, you can exercise this example by coding a command button that 
   // changes the width and height of the Lead1 control

   edit1.setText( "Control size: " + LEAD1.getWidth() + " x " + LEAD1.getHeight() );
}