GrapeCity SPREAD for Windows Forms 11.0J
CharacterSet 列挙体


セルの内容に使用できる文字セットを指定します。
構文
'Declaration
 
Public Enum CharacterSet 
   Inherits System.Enum
'使用法
 
Dim instance As CharacterSet
public enum CharacterSet : System.Enum 
メンバ
メンバ説明
AllIME 
Alpha英字のみを許可します。
AlphaNumeric英数字のみを許可します。
Ascii任意のASCII文字の入力を許可します。
Hiragana 
KanjiOnly 
KanjiOnlyIME 
Katakana 
KatakanaHalf 
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 クラス)

開発者ガイド

テキスト型セルの設定

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.