View.Move

説明

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

C#構文

View.Move( Int32 in_x, Int32 in_y );

スクリプト構文

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