InitializeEventArgs class
Used to set InputParameters of an InfoPath form template hosted in the XmlFormView control.
Assembly: Microsoft.Office.InfoPath.Server (in Microsoft.Office.InfoPath.Server.dll)
For more information about using query and input parameters, see How to: Use Query Parameters to Invoke Browser-Enabled InfoPath Forms.
In the following example, the InputParameters property is used in the Initialize event of the XmlFormView control to create a name/value pair indicating the department name.
Protected Sub XmlFormView1_Initialize(ByVal sender As Object, ByVal e As Microsoft.Office.InfoPath.Server.Controls.InitializeEventArgs) Handles XmlFormView1.Initialize e.InputParameters("Dept") = "Accounting" End Sub
To use this input parameter in form code, use the InputParameters property of the LoadingEventArgs object available in the Microsoft.Office.InfoPath namespace. For example, the value set in the XmlFormView1 initialization event is used to set a field's value in the form.
protected void XmlFormView1_Initialize(object sender, InitializeEventArgs e) { e.InputParameters["Dept"] = "Accounting"; }
To use this input parameter in form code, use the InputParameters property of the LoadingEventArgs object available in the Microsoft.Office.InfoPath namespace. For example, the value set in the XmlFormView1 initialization event is used to set a field's value in the form.
public void FormEvents_Loading(object sender, LoadingEventArgs e) { XPathNavigator myNav = this.MainDataSource.CreateNavigator(); myNav.SelectSingleNode("/my:myFields/my:field2", this.NamespaceManager).SetValue(e.InputParameters["Dept"].ToString()); }