次の方法で共有


FormTemplate クラス

定義

フォーム テンプレートを表します。

public ref class FormTemplate abstract
public abstract class FormTemplate
type FormTemplate = class
Public MustInherit Class FormTemplate
継承
FormTemplate

次の例では、現在のフォーム テンプレートの FormTemplate オブジェクトに参照が設定され、コードにフォーム テンプレートの 、CacheId、および Uri プロパティのVersion値が表示されます。

FormTemplate myTemplate = this.Template;

string templateProperties = "Version: " + myTemplate.Version +
   "\nCacheId: " + myTemplate.CacheId +
   "\nUri: " + myTemplate.Url.ToString();
MessageBox.Show(templateProperties);
Dim myTemplate As FormTemplate  = Me.Template

Dim templateProperties As String = "Version: " & myTemplate.Version & _
   vbNewLine & "CacheId: " & myTemplate.CacheId & _
   vbNewLine & "Uri: " + myTemplate.Url.ToString()
MessageBox.Show(templateProperties)

注釈

FormTemplate クラスは、バージョン番号、キャッシュ識別子、読み込まれた Uniform Resource Identifier (URI)、フォーム定義 (.xsf) ファイルのルートに配置されたオブジェクトなど、XPathNavigatorフォーム テンプレートに関する情報を取得するためのプロパティを実装します。 FormTemplate クラスには、フォーム テンプレート .xsn ファイルに含まれるファイルを開くメソッドも実装されています。

現在のフォームに関連付けられているフォーム テンプレートを表す FormTemplate オブジェクトには、 クラスの XmlForm プロパティをTemplate使用してアクセスします。

コンストラクター

FormTemplate()

フォーム テンプレートを表します。

プロパティ

CacheId

フォーム テンプレートのキャッシュ識別子を取得します。

Manifest

フォーム テンプレートのフォーム定義 (.xsf) ファイルのルートにある XPathNavigator オブジェクトを取得します。

Uri

フォーム テンプレートの URI (Uniform Resource Identifier) を取得します。

Version

フォーム テンプレートのバージョンを取得します。

メソッド

OpenFileFromPackage(String)

フォーム テンプレート (.xsn) ファイルに含まれるファイルを開きます。

適用対象