バージョン

MaxLength プロパティ

制約値で許容される最大の長さ(指定された値を含む)を取得または設定します。この制約は"string"型の値に適用されます。デフォルト値は0で、制限がないことを意味します。
シンタックス
'宣言
 
Public Property MaxLength As Integer
public int MaxLength {get; set;}
解説

MaxLength 制限は、評価されるデータ値が、このプロパティの値より小さいか同じであることを保証します。

注: 評価されるデータ値が文字列オブジェクトではない場合、この評価を実行する前に文字列に変換されます。

使用例
<!--This editor will make sure that the text entered is between 2 and 4 characters long-->
<igEditors:XamTextEditor x:Name="textEditor3" InvalidValueBehavior="DisplayErrorMessage" >
    
<igEditors:XamTextEditor.ValueConstraint>
        
<igEditors:ValueConstraint MinLength="2" MaxLength="4" />
    
</igEditors:XamTextEditor.ValueConstraint>
</igEditors:XamTextEditor>
参照