'Declaration Public Enum CharacterSet Inherits System.Enum
'Usage Dim instance As CharacterSet
public enum CharacterSet : System.Enum
'Declaration Public Enum CharacterSet Inherits System.Enum
'Usage Dim instance As CharacterSet
public enum CharacterSet : System.Enum
Member | Description |
---|---|
Alpha | Accepts letters (alphabetic characters) only |
AlphaNumeric | Accepts letters (alphabetic characters) or numbers (numeric characters) only |
Ascii | Accepts any of the ASCII characters |
Numeric | Accepts numbers (numeric characters) only |
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