_XDocument3.InputParameters 属性

定义

获取一个 InputParameterCollection 对象,该对象包含使用 /InputParameters 命令行选项指定的任何输入参数,或使用 URL 中的查询参数指定。

public:
 property Microsoft::Office::Interop::InfoPath::InputParameterCollection ^ InputParameters { Microsoft::Office::Interop::InfoPath::InputParameterCollection ^ get(); };
public Microsoft.Office.Interop.InfoPath.InputParameterCollection InputParameters { get; }
member this.InputParameters : Microsoft.Office.Interop.InfoPath.InputParameterCollection
Public ReadOnly Property InputParameters As InputParameterCollection

属性值

包含 InputParameterCollection 输入参数的 对象。

示例

在下面的示例中,InfoPath 表单模板是使用以下语法从命令行打开的:

infopath.exe“C:\User Forms\DeptReport.xsn” /InputParameters “Dept=Accounting”

string vDept = (_XDocument3)thisXDocument.InputParameters["Dept"];
Dim vDept As String = 
   DirectCast(thisXDocument, _XDocument3).InputParameters("Dept")

在下面的示例中,InfoPath 表单模板是使用以下语法从命令行打开的:

infopath.exe“C:\User Forms\DeptReport.xsn” /InputParameters “Dept=Accounting”

string vDept = (_XDocument3)thisXDocument.InputParameters["Dept"];
Dim vDept As String = 
   DirectCast(thisXDocument, _XDocument3).InputParameters("Dept")

注解

输入参数由与 (&) 字符分隔的一个或多个名称/值对组成,当使用 /InputParameters 命令行选项从命令行或批处理文件打开表单模板时指定。 还可以在通过 URL 打开表单模板时使用查询参数来指定输入参数。

适用于