TOC : OZ e-Form Extension > OZ e-Form JavaScript API > Input > SignPad > Method >

 

SetKeyboardType

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

TOC : OZ e-Form Extension > OZ e-Form JavaScript API > Input > SignPad > Method >

 

SetKeyboardType

 

 

Sets the keyboard type.

 

 

 

Prototype :

 

void SetKeyboardType

(

       string KeyboardType

)

 

 

 

Arguments :

 

KeyboardType

Refer to KeyboardTypeConst

 

 

 

Reference :

 

Works only when SignInputMode is set to keypad.

 

 

 

Example :

 

//string

  This.SetAvailableSignInputMode("Keypad,Sign");

  This.SetSignInputMode("Keypad");

  This.SetKeyboardType("Alphabet");

 

//constant

  This.SetAvailableSignInputMode(SignInputModeConst.Keypad + "," + SignInputModeConst.Sign);

  This.SetSignInputMode(SignInputModeConst.Keypad);

  This.SetKeyboardType(KeyboardTypeConst.Alphabet);

 

 

 

Available Events :

 

OnAddToPage,  OnBind,  OnInitialize,  OnStartBind

 

 

 

See also :

 

KeyboardTypeConst