<< Click to Display Table of Contents >> ShapeMove |
public void ShapeMove(MyShape tmpShape,Single dx,Single dy)
Description:
move a shape.
Parameter:
tmpShape: The shape you want to move
dx,dy: The move position
Example:
private void button1_Click(object sender, System.EventArgs e)
{
myCAD1.ShapeMove(shape0,100,100);
}