BringToFront

<< Click to Display Table of Contents >>

Navigation:  MyCAD > Methods >

BringToFront

public void BringToFront(MyShape tmpShape,Boolean needSaved)

 

Description:

 Sent the selected shape to front.

 

Parameter:

 tmpShape: The shape that you will change

 needSaved: Weather save this operation to undo list

 

Example:

 private void menuEditBringToFront_Click(object sender, System.EventArgs e)

 {

         myCAD1.BringToFront(myCAD1.GetSelectedShape(),true);

 }

 

See also:

 SendToBack