Hi
When I add a new object in GoView, I want it shape square
When Mouse moving with Shift Key, it should be changed square shape (both height and width are same)
I use my New class
and then, made methods
public override void DoMouseMove()
public override void DoMouseUp()
public class myToolCreating : GoToolCreating
{
public override void DoMouseMove()
{
if (this.LastInput.Shift)
{
###### code 1 ########
}
}
public override void DoMouseUp()
{
###### code 2 ######
}
.....
}
I need code1, code2…
Would you give me sample code in the method…
or Another solution.
please reply
thank you