"Layout" parameters

A forum devoted to the discussion of all topics having to do with scripting and other advanced programming using iX Developer.
Post Reply
Joe
Posts: 27
Joined: Tue Sep 18, 2012 4:53 am

"Layout" parameters

Post by Joe »

Hi,

again ... :oops:

May I change "Layout" parameters of BUTTON by script or some dynamic function ?
Left from 100 to 200

Thanks for reply

Regards

Joe

User avatar
Edmund
Posts: 92
Joined: Thu Nov 29, 2012 2:27 pm

Re: "Layout" parameters

Post by Edmund »

Sure, both via script and the dynamics tab (Move).

E.g. via script

Code: Select all

void Button2_Click(System.Object sender, System.EventArgs e)
{
	Button1.Left = 300;
	Button1.Top = 150;
}
Edmund Andersson

AITECH AB

Part of Beijer Integrator Group

Post Reply