ValueInputType Enumeration

Assembly: CodeEffects.Rule.Common.dll
Namespace: CodeEffects.Rule.Common.Models

Summary

Defines the type of input that the user can use to set the value of a particular field in the Rule Area.

Syntax

public enum ValueInputType
	{
		// Allows selection of fields, in-rule methods, or reusable rules only
		Fields = 0,

		// Allows the user to enter a value manually or select it from predefined ranges only
		User = 2,

		// Allows all types of value inputs
		All = 4
	}

Remarks

This enumeration is used by the FieldAttribute, ReturnAttribute, and ParameterAttribute to specify how rule authors are permitted to input values for fields, method return values, and method parameters of the source object. See the corresponding topics for details.

p101

l097 --

l102

p101

×