次の方法で共有


_XDocument4.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 = (_XDocument4)thisXDocument.InputParameters["Dept"];
Dim vDept As String = 
   DirectCast(thisXDocument, _XDocument4).InputParameters("Dept")

次の例では、次の構文を使用して、コマンド ラインから InfoPath フォーム テンプレートを開いています。

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

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

注釈

入力パラメーターは、/InputParameters コマンド ライン オプションを使用してフォーム テンプレートをコマンド ラインまたはバッチ ファイルから開いたときに指定されるアンパサンド (&) 文字で区切られた 1 つ以上の名前と値のペアで構成されます。 入力パラメーターは、フォーム テンプレートが URL から開かれるときにクエリ パラメーターを使用して指定される場合もあります。

適用対象