Version

MinLength Property

Gets/sets the minimum length (inclusive) allowed for the constrained value. This constraint applies to values of type 'string'. The default value is 0, which means there is no minimum length constraint.
Syntax
'Declaration
 
Public Property MinLength As Integer
public int MinLength {get; set;}
Remarks

MinLength constraint will ensure that the data value being validated has a length that's greater than or equal the value of this property.

Note: If the data value being validated is not a string object then it will be converted to string before performing this validation.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also