View.Resize

説明

ビューのサイズを変更します。

C#構文

View.Resize( Int32 in_w, Int32 in_h );

スクリプト構文

View.Resize( Width, Height );

パラメータ

パラメータ タイプ 説明
Width Long ビューの変更後の幅
Height Long ビューの変更後の高さ

Python の例

#

#	This example demonstrates how to create a view and then expand 

#	its default size.

#

Application.NewScene( "", 0 )

app = Application

netv = app.Desktop.ActiveLayout.CreateView2( "netview", "netview" )

netv.SetAttributeValue( "url", "http://softimage.wiki.softimage.com/index.php/Main_Page" )

netv.Resize( 1280, 1280 )

関連項目

View.Move View.Rectangle