ReportExpression.Inequality Operator

定義

2つの表現の不等式を検証します。

オーバーロード

名前 説明
Inequality(ReportExpression, ReportExpression)

2つの表現の不等式を検証します。

Inequality(ReportExpression, String)

2つの表現の不等式を検証します。

Inequality(String, ReportExpression)

2つの表現の不等式を検証します。

Inequality(ReportExpression, ReportExpression)

2つの表現の不等式を検証します。

public:
 static bool operator !=(Microsoft::ReportingServices::RdlObjectModel::ReportExpression left, Microsoft::ReportingServices::RdlObjectModel::ReportExpression right);
public static bool operator !=(Microsoft.ReportingServices.RdlObjectModel.ReportExpression left, Microsoft.ReportingServices.RdlObjectModel.ReportExpression right);
static member op_Inequality : Microsoft.ReportingServices.RdlObjectModel.ReportExpression * Microsoft.ReportingServices.RdlObjectModel.ReportExpression -> bool
Public Shared Operator != (left As ReportExpression, right As ReportExpression) As Boolean

パラメーター

left
ReportExpression

ReportExpression オブジェクト。

right
ReportExpression

ReportExpression オブジェクト。

返品

True もし2つの式が等しくない場合;それ以外は false

注釈

この演算子の同等のメソッドは次のようになります。 <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression.Compare%28Microsoft.ReportingServices.RdlObjectModel.ReportExpression%2CMicrosoft.ReportingServices.RdlObjectModel.ReportExpression%29?displayProperty=fullName>

適用対象

Inequality(ReportExpression, String)

2つの表現の不等式を検証します。

public:
 static bool operator !=(Microsoft::ReportingServices::RdlObjectModel::ReportExpression left, System::String ^ right);
public static bool operator !=(Microsoft.ReportingServices.RdlObjectModel.ReportExpression left, string right);
static member op_Inequality : Microsoft.ReportingServices.RdlObjectModel.ReportExpression * string -> bool
Public Shared Operator != (left As ReportExpression, right As String) As Boolean

パラメーター

left
ReportExpression

ReportExpression オブジェクト。

right
String

表現文字列。

返品

True もし2つの式が等しくない場合;それ以外は false

注釈

この演算子の同等のメソッドは次のようになります。 <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression.Compare%28Microsoft.ReportingServices.RdlObjectModel.ReportExpression%2CSystem.String%29?displayProperty=fullName>

適用対象

Inequality(String, ReportExpression)

2つの表現の不等式を検証します。

public:
 static bool operator !=(System::String ^ left, Microsoft::ReportingServices::RdlObjectModel::ReportExpression right);
public static bool operator !=(string left, Microsoft.ReportingServices.RdlObjectModel.ReportExpression right);
static member op_Inequality : string * Microsoft.ReportingServices.RdlObjectModel.ReportExpression -> bool
Public Shared Operator != (left As String, right As ReportExpression) As Boolean

パラメーター

left
String

表現文字列。

right
ReportExpression

ReportExpression オブジェクト。

返品

True もし2つの式が等しくない場合;それ以外は false

注釈

この演算子の同等のメソッドは次のようになります。 <xref:Microsoft.ReportingServices.RdlObjectModel.ReportExpression.Compare%28System.String%2CMicrosoft.ReportingServices.RdlObjectModel.ReportExpression%29?displayProperty=fullName>

適用対象