Click or drag to resize
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.6773.37566
Syntax
C#
public string getChoiceExport(
	int index
)

Parameters

index
Type: SystemInt32
the 0-based value index of the export value.

Return Value

Type: String
The selected export value of the field or an empty string if the index is out of range.
Remarks
getValue() and setValue() use the export value.
See Also