FormTypeEntry CreateFormEntry Method (NameValueCollection,   )frevvo Live Forms
Creates a form instance 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 CreateFormEntry(
	NameValueCollection linkParams,
	params MediaSource[] sources
)

Parameters

linkParams
Type: OnlineSystem.Collections.Specialized NameValueCollection
A name value collection to initialize form, or put form in edit mode etc.
sources
Type:  MediaSource 
Files to upload during instance creation - may be null

Return Value

Type: FormEntry
FormEntry
Examples

NameValueCollection nvc = new NameValueCollection(); nvc.Add("_data", "{ElementName:ElementValue}"); nvc.Add("edit", "true"); Uri formUri = ft.CreateFormInstance(nvc);
See Also