FarPoint.Win.Spread アセンブリ > FarPoint.Win.Spread.CellType 名前空間 : CharacterSet 列挙体 |
'宣言
Public Enum CharacterSet Inherits System.Enum
public enum CharacterSet : System.Enum
メンバ | 解説 |
---|---|
Alpha | 英字のみを許可します。 |
AlphaNumeric | 英数字のみを許可します。 |
Ascii | 任意のASCII文字の入力を許可します。 |
Numeric | 数字のみを許可します。 |
FarPoint.Win.Spread.CellType.TextCellType txtct = new FarPoint.Win.Spread.CellType.TextCellType();
txtct.CharacterSet = FarPoint.Win.Spread.CellType.CharacterSet.AlphaNumeric;
fpSpread1.ActiveSheet.Cells[0, 0].CellType = txtct;
Dim txtct As New FarPoint.Win.Spread.CellType.TextCellType() txtct.CharacterSet = FarPoint.Win.Spread.CellType.CharacterSet.AlphaNumeric FpSpread1.ActiveSheet.Cells(0, 0).CellType = txtct
System.Object
System.ValueType
System.Enum
FarPoint.Win.Spread.CellType.CharacterSet