PowerTools SPREAD for Windows Forms 8.0J
CustomMaskCharacters プロパティ


マスク用のカスタム文字を取得または設定します。
構文
'Declaration
 
Public Overridable Property CustomMaskCharacters As String()
'使用法
 
Dim instance As MaskCellType
Dim value() As String
 
instance.CustomMaskCharacters = value
 
value = instance.CustomMaskCharacters
public virtual string[] CustomMaskCharacters {get; set;}

プロパティ値

カスタム マスク文字を含む String の配列
次のサンプルコードは、カスタムマスクを設定します。
FarPoint.Win.Spread.CellType.MaskCellType mask =new FarPoint.Win.Spread.CellType.MaskCellType();
        string[] test;
        test = new string[] {"t", "e", "s", "t"};
        mask.CustomMaskCharacters = test;
        //  0 is the first character in the array, 1 is the second character, etc...
        mask.Mask = "0120";
        fpSpread1.Sheets[0].Cells[0, 0].CellType = mask;
Dim test As String()
        test = New String() {"t", "e", "s", "t"}
        Dim mask As New FarPoint.Win.Spread.CellType.MaskCellType()
        mask.CustomMaskCharacters = test
        '  0 is the first character in the array, 1 is the second character, etc...
        mask.Mask = "0120"
        FpSpread1.Sheets(0).Cells(0, 0).CellType = mask
参照

MaskCellType クラス
MaskCellType メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.