ReportExpression.Inequality 演算子

定義

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 オブジェクト。

戻り値

2 つの式が等しくない場合は True、それ以外の場合は 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

式文字列。

戻り値

2 つの式が等しくない場合は True、それ以外の場合は 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 オブジェクト。

戻り値

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

注釈

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

適用対象