activities
latest
false
重要 :
请注意此内容已使用机器翻译进行了部分本地化。
工作流活动
Last updated 2024年10月31日

VerifyIsLess

验证第一个表达式是否小于第二个表达式。

定义

命名空间: UiPath.Testing.API

程序集: UiPath.Testing.Activities.Api(在 UiPath.Testing.Activities.Api.dll 中)

VerifyIsLess(object, object, string)

bool VerifyIsLess(
       object firstExpression,
       object secondExpression
       string outputMessageFormat = null
)bool VerifyIsLess(
       object firstExpression,
       object secondExpression
       string outputMessageFormat = null
)
第一个表达式 对象
验证流程中的第一个表达式。
第二个表达式 对象
验证流程中的第二个表达式。
输出消息格式 字符串
输出消息的格式。 支持的参数包括:
  • {LeftExpression}
  • {LeftExpressionText}
  • {RightExpression}
  • {RightExpressionText}
  • {Result}

有关更多信息,请查看“配置outputMessageFormat ”部分。

返回值

如果第一个表达式小于第二个表达式,则为True ,如果第一个表达式等于或大于第二个表达式,则为False

配置outputMessageFormat

outputMessageFormat参数可以配置受支持的参数,这些参数充当验证操作中所用值的占位符。 这些占位符会自动填充有在运行时调用 API 时定义的变量或值。

对于VerifyIsLess API,您可以在创建输出消息时实现以下支持的参数:

  • {LeftExpression} :表示您为firstExpression参数提供的第一个表达式的值。
  • {LeftExpressionText} :表示您为firstExpression参数插入的第一个表达式的文本。
  • {RightExpression} :表示您为secondExpression参数提供的第二个表达式的值。
  • {RightExpressionText} :表示您为secondExpression参数插入的第二个表达式的文本。
  • {Result} :表示 API 的返回值,即验证结果。
以下示例说明了如何使用VerifyIsLess API,其中包括配置outputMessageFormat参数:
// Initialize variables for the expressions to be verified
var expression1 = 4;
var expression2 = 5;

// Employ the VerifyIsLess API, with the last string parameter being the outputMessageFormat
testing.VerifyIsLess(expression1, expression2, "{LeftExpression} should be lower than {LowerLimitText}, and the result to this is {Result}");// Initialize variables for the expressions to be verified
var expression1 = 4;
var expression2 = 5;

// Employ the VerifyIsLess API, with the last string parameter being the outputMessageFormat
testing.VerifyIsLess(expression1, expression2, "{LeftExpression} should be lower than {LowerLimitText}, and the result to this is {Result}");

在提供的示例中,大括号中的占位符在运行时替换为相应的变量名称及其值,从而提供自定义的输出消息。

此页面有帮助吗?

获取您需要的帮助
了解 RPA - 自动化课程
UiPath Community 论坛
Uipath Logo White
信任与安全
© 2005-2024 UiPath。保留所有权利。