| SignDocFieldgetChoiceExport Method |
Get the export value for an available choice of a list box or combo box.
List boxes and combo boxes can have multiple possible choices.Each choice has a value(which will be displayed) and an export value(which is used for exporting the value of the field).Usually, both values are identical.This function returns one export value, use getChoiceValue() to get the associated choice value.
Namespace:
de.softpro.signdocsdk
Assembly:
SPSignDoc_4.3_DotNetLib (in SPSignDoc_4.3_DotNetLib.dll) Version: 1.0.7023.29499
Syntaxpublic string getChoiceExport(
int index
)
Parameters
- index
- Type: SystemInt32
the 0-based value index of the export value.
Return Value
Type:
StringThe selected export value of the field or an empty string if the index is out of range.
If flag SignDocDocument.f_keep_escape_sequences
is set, the string may contain escape sequences
for selecting natural languages.
RemarksgetValue() and setValue() use the export value.
See Also