次の方法で共有


DataDOMEvent.Site プロパティ

定義

データの入力規則イベントが現在処理されている XML DOM (Document Object Model) ノードへの参照を取得します。

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

プロパティ値

次の例では、 オブジェクトを DataDOMEventObject 使用して、 Site プロパティを使用してノードの値を確認します。 データ検証が失敗した場合、メソッドを ReportError(Object, String, Boolean, String, Int32, String) 使用してカスタム エラーが作成されます。

public void field1_OnValidate(DataDOMEvent e)
{
if(e.Site.text != "")
 {
  int quantity = int.Parse(e.Site.text.ToString());
  if(quantity > 50)
  {
   e.ReportError(e.Site, "Invalid quantity. The total number of each type of block cannot exceed 50.", false, "", 2,"modeless");
  }

  if(quantity < 0)
  {
   e.ReportError(e.Site, "Invalid quantity. The total number of each type of block cannot be less than 0.", false,"", 2,"modeless");    
  }
 }
}

注釈

Site プロパティが返す XML DOM ノードへの参照を設定した後は、XML DOM でサポートされているすべてのプロパティとメソッドを使用できます。

適用対象