| SignDocFieldsetValue Method (Int32, String) |
Set a value of the field.
Pushbutton fields and signature fields don't have a value, list boxes can have multiple values selected if f_MultiSelect is set.
Hard line breaks for multiline text fields(ie, text fields with flag f_MultiLine set) are encoded as "\r", "\n", or "\r\n".The behavior for values containing line breaks is undefined if the f_MultiLine flag is not set.
After calling this function, getValueIndex() will return -1.
Namespace: de.softpro.signdocsdkAssembly: SPSignDoc_4.1_DotNetLibd (in SPSignDoc_4.1_DotNetLibd.dll) Version: 1.0.5882.21462
Syntaxpublic bool setValue(
int index,
string value
)
Public Function setValue (
index As Integer,
value As String
) As Boolean
public:
bool setValue(
int index,
String^ value
)
member setValue :
index : int *
value : string -> bool
Parameters
- index
- Type: SystemInt32
The 0 - based index of the value to be set.If aIndex equals the current number of values, the value will be added
- value
- Type: SystemString
The value to be set.Complex scripts are supported, see Complex Scripts.
Return Value
Type:
Boolean
true if successful, false if aIndex is out of range.
See Also