Changes the size of the view.
View.Resize( Int32 in_w, Int32 in_h ); |
View.Resize( Width, Height ); |
# # This example demonstrates how to create a view and then expand # its default size. # Application.NewScene( "", 0 ) app = Application netv = app.Desktop.ActiveLayout.CreateView( "netview", "netview" ) netv.SetAttributeValue( "url", "http://softimage.wiki.softimage.com/index.php/Main_Page" ) netv.Resize( 1280, 1280 ) |