Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Arranges a form.
Syntax
public void arrange()
Run On
Client
Examples
The following example shows a call to the arrange method.
void runForm(Form form)
{
Args args;
FormRun formRun;
args = new Args();
args.object(form);
//Create the run-time form.
formRun = classfactory.formRunClass(args);
formRun.run();
formRun.detach();
formRun.formOnTop();
formRun.arrange();
}