View.Move

説明

グローバルスクリーン座標でビューを移動します。

スクリプト 構文

View.Move( XPos, YPos );

パラメータ

パラメータ タイプ 詳細
XPos Long 新しいビューの x位置
YPos Long 新しいビューのY位置

JScript の例

/*
        This example demonstrates how to create a view and then move 
        it to the top left corner of the screen.
*/
NewScene( null, false );
var netv = Desktop.ActiveLayout.CreateView( "netview", "netview" );
netv.SetAttributeValue( "url", "http://softimage.wiki.softimage.com/index.php/Main_Page" );
netv.Move( 0, 0 );

関連項目

View.Resize View.Rectangle