FormTypeEntry CreateEditingFormEntry Method (NameValueCollection)frevvo Live Forms
Creates a form instance, in editing mode, having the current type. See http://docs.frevvo.com/d/display/frevvo/Initializing+Forms+with+Data for more information.

Namespace: Frevvo.Forms.Client
Assembly: Frevvo.Forms.Client (in Frevvo.Forms.Client.dll) Version: 7.2.1.0 (7.2.1)
Syntax

public FormEntry CreateEditingFormEntry(
	NameValueCollection linkParams
)

Parameters

linkParams
Type: OnlineSystem.Collections.Specialized NameValueCollection
A name value collection to initialize form, or additional URL link parameters.

Return Value

Type: FormEntry
FormEntry
Examples

NameValueCollection nvc = new NameValueCollection(); nvc.Add("_data", "{ElementName:ElementValue}"); FormEntry formEntry = ft.CreateEditingFormInstance(nvc);
See Also