|
<< 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 >SetAvailableSignInputMode |
Sets the available signature input mode when you click a signature area.
Prototype :
void SetAvailableSignInputMode
(
string AvailableSignInputMode,
[ bool MainScreen ]
)
Arguments :
AvailableSignInputMode |
available signature input mode. refer to SignInputModeConst Multiple options are separated by comma(","). |
MainScreen |
true for main screen If not set, applies as true |
Reference :
This is for a single signature, and works only when eform.signpad_type=keypad.
Example :
//string
This.SetAvailableSignInputMode("Keypad,Sign");
//constant
This.SetAvailableSignInputMode(SignInputModeConst.Keypad + "," + SignInputModeConst.Sign);
Available Events :
OnAddToPage, OnBind, OnInitialize, OnStartBind
See also :