| SignDocFieldinsertWidget Method |
Add a widget to the field in front of another widget.
The new widget will be inserted at the specified index, ie, the index of the new widget will be aIndex.
After adding a widget, the new widget will be selected. You must set the page number and the coordinates in the new widget before calling SignDocDocument.addField() or SignDocDocument.setField()
Namespace: de.softpro.signdocsdkAssembly: SPSignDoc_4.1_DotNetLibd (in SPSignDoc_4.1_DotNetLibd.dll) Version: 1.0.5882.21462
Syntaxpublic bool insertWidget(
int index
)
Public Function insertWidget (
index As Integer
) As Boolean
public:
bool insertWidget(
int index
)
member insertWidget :
index : int -> bool
Parameters
- index
- Type: SystemInt32
0-based index of the widget in front of which the new widget shall be inserted. You can pass the current number of widgets as returned by getWidgetCount() to add the new widget to the end as addWidget() does.
Return Value
Type:
Booleantrue if successful.
See Also