Click or drag to resize

ITestApiIsFormFieldRequired Method

Evaluate whether the form field is required or not
Example
C#
var testApi = ctx.Use<ITestApi>();
testApi.IsFormFieldRequired("workflowName", "activityName", "componentName")

Namespace: Casewhere.Runtime.DSL.Api
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.5.0
Syntax
C#
bool IsFormFieldRequired(
	string workflowName,
	string activityName,
	string componentName
)

Parameters

workflowName  String
Workflow Name
activityName  String
Activity Name
componentName  String
Form Component Name

Return Value

Boolean
Return true if the form component is required, otherwise, return false
See Also