共用方式為


XsltLibrary.RelationalOperator 方法

定義

根據傳遞的 left,評估 right 運算式大於或等於、小於或等於 opCode 運算式。

此 API 支援此產品基礎結構,但無法直接用於程式碼之中。

public:
 bool RelationalOperator(double opCode, System::Collections::Generic::IList<System::Xml::XPath::XPathItem ^> ^ left, System::Collections::Generic::IList<System::Xml::XPath::XPathItem ^> ^ right);
public bool RelationalOperator (double opCode, System.Collections.Generic.IList<System.Xml.XPath.XPathItem> left, System.Collections.Generic.IList<System.Xml.XPath.XPathItem> right);
member this.RelationalOperator : double * System.Collections.Generic.IList<System.Xml.XPath.XPathItem> * System.Collections.Generic.IList<System.Xml.XPath.XPathItem> -> bool
Public Function RelationalOperator (opCode As Double, left As IList(Of XPathItem), right As IList(Of XPathItem)) As Boolean

參數

opCode
Double

指定執行兩個運算式評估的方式:

如果作業碼等於 2,XPath 運算式會得出 "left < right"。

如果作業碼等於 3,XPath 運算式會得出 "left <= right"。

如果作業碼等於 4,XPath 運算式會得出 "left > right"。

如果作業碼等於 5,XPath 運算式會得出 "left >= right"

left
IList<XPathItem>

要評估的運算式。

right
IList<XPathItem>

要評估的運算式。

傳回

Boolean

如果左運算式大於或等於右運算式,布林值為 true。

適用於