RVBox.RVBox


public function RVBox

Prototype:

public function RVBox(object Owner);

Parameters

Owner
the parent of the RVBox; the parent should be at least a SingleContainer derived object.

Description:

This is the constructor for RVBox.

Return value:

This is a constructor, and returns nothing.

Example
To instantiate a RVBox you should use the 'new' operator:

	var box=new RVBox(container);
	// don't forget to call {Show } ();
	box.Show();