private void Form1_Load(object sender, EventArgs e)
{
fpSpread1.AutoImeMode = false;
// テキスト型セルの設定
FarPoint.Win.Spread.CellType.TextCellType tcell = new FarPoint.Win.Spread.CellType.TextCellType();
tcell.CharacterSet = FarPoint.Win.Spread.CellType.CharacterSet.Hiragana;
fpSpread1.ActiveSheet.Columns[1].CellType = tcell;
}
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
FpSpread1.AutoImeMode = False
' テキスト型セルの設定
Dim tcell As New FarPoint.Win.Spread.CellType.TextCellType()
tcell.CharacterSet = FarPoint.Win.Spread.CellType.CharacterSet.Hiragana
FpSpread1.ActiveSheet.Columns(1).CellType = tcell
End Sub