次の方法で共有


_ExternalApplication2.NewFromSolutionWithInputParameters メソッド

定義

指定したフォーム テンプレートと入力パラメーターを使用して、新しいフォームを作成します。

public:
 void NewFromSolutionWithInputParameters(System::String ^ bstrSolutionURI, System::String ^ bstrInputParameters);
public void NewFromSolutionWithInputParameters (string bstrSolutionURI, string bstrInputParameters);
abstract member NewFromSolutionWithInputParameters : string * string -> unit
Public Sub NewFromSolutionWithInputParameters (bstrSolutionURI As String, bstrInputParameters As String)

パラメーター

bstrSolutionURI
String

新しいフォームの基になるフォーム テンプレートの URI (Uniform Resource Identifier)。

bstrInputParameters
String

アンパサンド (&) 文字で区切られた 1 つ以上の名前/値ペア。

: 次の例では、名前空間が Microsoft.Office.Interop.InfoPath 使用されており、Microsoft InfoPath 3.0 タイプ ライブラリが参照されていることを前提としています。

次の例は、適切 Loading なイベント ハンドラーと 2 つの入力パラメーターを含むフォーム テンプレートの URI を渡すことによって、新しいフォームを作成する方法を示しています。

private void CreateFormWithInputParameters()
{
ExternalApplication infoPath = new ExternalApplicationClass();

// Create an InfoPath form passing in input parameters.
infoPath. <span class="label">NewFromSolutionWithInputParameters</span>(
   @"C:\User Forms\DeptReport.xsn","Dept=Accounting&amp;Acct=Contoso");
}

: 次の例では、名前空間が Microsoft.Office.Interop.InfoPath 使用されており、Microsoft InfoPath 3.0 タイプ ライブラリが参照されていることを前提としています。

次の例は、適切 Loading なイベント ハンドラーと 2 つの入力パラメーターを含むフォーム テンプレートの URI を渡すことによって、新しいフォームを作成する方法を示しています。

private void CreateFormWithInputParameters()
{
ExternalApplication infoPath = new ExternalApplicationClass();

// Create an InfoPath form passing in input parameters.
infoPath. <span class="label">NewFromSolutionWithInputParameters</span>(
   @"C:\User Forms\DeptReport.xsn","Dept=Accounting&amp;Acct=Contoso");
}

注釈

パラメーターに渡される入力パラメーターをinputParameters使用するには、パラメーターで指定されたフォームにformTemplateLocation、 クラスの プロパティをLoadingInputParameters使用して入力パラメーター値をLoadingEventArgs取得し、それらの値で何かを行うイベント ハンドラーが含まれている必要があります。 これを行う方法の例については、 クラスの プロパティをInputParametersLoadingEventArgs参照してください。

適用対象