FormTypeEntry CreateFormEntry Method (FormsService, NameValueCollection,   )frevvo Live Forms
Create a new use mode instance using an alternate form service. Useful to instantiate the user mode form for another user.

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(
	FormsService service,
	NameValueCollection paramList,
	params MediaSource[] sources
)

Parameters

service
Type: Frevvo.Forms.Client FormsService

[Missing <param name="service"/> documentation for "M:Frevvo.Forms.Client.FormTypeEntry.CreateFormEntry(Frevvo.Forms.Client.FormsService,System.Collections.Specialized.NameValueCollection,Google.GData.Client.MediaSource[])"]

paramList
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
Remarks

Method added in Release 6.0
Examples

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