SetOrientation sets the orientation of the device.
Example - Example
function OnStart()
{
app.SetOrientation( "Landscape" );
lay = app.CreateLayout( "Linear", "Vertical" );
txt = app.CreateText( "Hello" );
txt.SetTextSize( 32 );
lay.AddChild( txt );
app.AddLayout( lay );
}