Hide keyboard and position keyboard

A forum devoted to the discussion of all topics having to do with scripting and other advanced programming using iX Developer.
Post Reply
Anton
Posts: 1
Joined: Thu Aug 29, 2013 3:40 am

Hide keyboard and position keyboard

Post by Anton »

Hi is there any way of hiding a keyboard i've tried

Code: Select all

 kh.HideFullKeyboard(rt) 
Also is there a way to position the keyboard i've tried

rt.top = 50; & kh.top = 50;

This is my code to show the keyboard

Code: Select all

	IKeyboardHelper kh = KeyboardHelperFactory.KeyboardHelper;
	Rectangle rt = new Rectangle(0, 0, 0, 0);
	rt.Width=0;
	kh.ShowFullKeyboard(rt);
Is there any documentation for IKeyboardHelper?

mark.monroe
Posts: 824
Joined: Tue Mar 13, 2012 9:53 am

Re: Hide keyboard and position keyboard

Post by mark.monroe »

Unfortunately the only documentation available is not very good. You can get to it by going to an iX Dev scripting section and then press F1. That works where ever you type in C# code in iX Dev. That will bring up the script help system where you can find the function definitions. I do not know of any way to hide the keyboard.
Best Regards,
Mark Monroe

Beijer Electronics, Inc. | Applications Engineer

Post Reply