ModelView.SetFront

This page contains reference documentation for the SetFront function. This function sets the worksheet projection to FRONT.

Prototype

int SetFront()

Examples

Examples are as follows:

ModelView a_oTopLeftView = Application.Window.GetView( 0, 0 );
ModelView a_oBottomLeftView = Application.Window.GetView( 1, 0 );
ModelView a_oTopRightView = Application.Window.GetView( 0, 1 );
ModelView a_oBottomRightView = Application.Window.GetView( 1, 1 );

a_oBottomLeftView.SetTop();
a_oBottomRightView.SetFront();
a_oTopRightView.SetSide();
a_oTopLeftView.SetPerspective();

Working Sample Code

For sample code: