グローバルスクリーン座標でビューを移動します。
View.Move( XPos, YPos ); |
/*
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 );
|