ITestApiIsFormFieldReadonly Method
|
Evaluate whether the form field is readonly or not
Examples var testApi = ctx.Use<ITestApi>();
testApi.IsFormFieldReadonly("workflowName", "activityName", "componentName")
Namespace:
Casewhere.Runtime.DSL.Api
Assembly:
Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.1.0
Syntax bool IsFormFieldReadonly(
string workflowName,
string activityName,
string componentName
)
Parameters
- workflowName
- Type: SystemString
Workflow Name - activityName
- Type: SystemString
Activity Name - componentName
- Type: SystemString
Form Component Name
Return Value
Type:
BooleanReturn true if the form component is readonly, otherwise, return false
See Also