Enum ValueValidationResult
Specifies values for Result
Namespace: ABB.Robotics.RobotStudio.Stations
Assembly: ABB.Robotics.RobotStudio.Stations.dll
Syntax
public enum ValueValidationResult
Remarks
Standard validation is performed according to KnownAttributeKeys in Attributes. Custom validation is performed in code behind, see QueryPropertyValueValid(SmartComponent, DynamicProperty, object).
Fields
| Name | Description |
|---|---|
| AboveMax | The value is above the maximum value. |
| BelowMin | The value is below the minimum value. |
| Invalid | The value is invalid for any other reason. |
| InvalidProject | The value is a ProjectObject which does not belong to the same Project as the SmartComponent. |
| InvalidSyntax | The value is an expression with invalid syntax. |
| InvalidType | The value is of the wrong type. |
| NotAllowed | The value is not within the set of allowed values. |
| TooLong | The value is a string which is too long. |
| TooShort | The value is a string which is too short. |
| Valid | The value is valid. |