FormTypeEntry CreateFormEntry Method (NameValueCollection, Stream)frevvo Live Forms
Creates a form instance having the current type.

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,
	Stream docStream
)

Parameters

linkParams
Type: OnlineSystem.Collections.Specialized NameValueCollection
A name value collection to initialize form, or put form in edit mode etc.
docStream
Type: OnlineSystem.IO Stream
An xml document to initialize form

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