MESCIUS SPREAD for Windows Forms 15.0J
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

参照

FarPoint.Win.Spread.CellType 名前空間
CharacterSet プロパティ (ComboBoxCellType クラス)
CharacterSet プロパティ (TextCellType クラス)
CharacterSet プロパティ (GeneralEditor クラス)

開発者ガイド

テキスト型セルの設定

 

 


© MESCIUS inc. All rights reserved.