Hi,
Is there a way to dynamically change the size of a rectangle on a TA-panel?
Hans
Size of rectangle
Re: Size of rectangle
Hans,
Use a script to change your rectangle on an event. Here is an example:
public partial class Screen1
{
void Rectangle1_MouseDown(System.Object sender,
System.Windows.Forms.MouseEventArgs e)
{
this.Rectangle1.Height = 20;
this.Rectangle1.Width = 40;
}
}
Use a script to change your rectangle on an event. Here is an example:
public partial class Screen1
{
void Rectangle1_MouseDown(System.Object sender,
System.Windows.Forms.MouseEventArgs e)
{
this.Rectangle1.Height = 20;
this.Rectangle1.Width = 40;
}
}
Best Regards,
Beijer Electronics, Inc.
Skylar Walker | Applications Engineer
Beijer Electronics, Inc.
Skylar Walker | Applications Engineer