Table of Contents

Class MaximumIntValueValidationRule

Namespace
Kentico.Forms.Web.Mvc
Assembly
Kentico.Content.Web.Mvc.dll

Rule validates that user input value is not greater than specified value. Variant for int value types.

public class MaximumIntValueValidationRule : ValidationRule<int>
Inheritance
object
MaximumIntValueValidationRule
Inherited Members
Extension Methods

Properties

MaximumValue

Maximum value user input is validated against.

[EditingComponent("Kentico.IntInput", Label = "{$kentico.formbuilder.validationrule.maximumvalue.maximumvalue.label$}")]
[Required]
public int MaximumValue { get; set; }

Property Value

int

Methods

GetTitle()

Gets a title for this instance of validation rule such as 'Maximum value is 100'.

public override string GetTitle()

Returns

string

Returns text describing the validation rule.

Validate(int)

Validates the form component's value and returns true if it is less or equal to the MaximumValue.

protected override bool Validate(int value)

Parameters

value int

Value of the form component.

Returns

bool

true if the value is valid, otherwise false.