CalendarView for WinForms
CharHelper クラス
メンバ  使用例 

C1.Win.C1Input.4.5.2 アセンブリ > C1.Win.C1Input 名前空間 : CharHelper クラス
日本語エンコーディングで動作する静的メソッドのセットを提供します。
オブジェクト モデル
CharHelper クラス
シンタックス
'宣言
 
Public MustInherit NotInheritable Class CharHelper 
public static class CharHelper 
使用例
System.Windows.Forms.Control.KeyPress イベントハンドラで CharHelper を使用して、入力を条件付きフィルタ処理する方法を示します。
private void c1TextBox1_KeyPress(object sender, KeyPressEventArgs e)
{
  if (CharHelper.IsKatakana(e.KeyChar))
  e.KeyChar = CharHelper.ToHiragana(e.KeyChar);
}
継承階層

System.Object
   C1.Win.C1Input.CharHelper

参照

CharHelper メンバ
C1.Win.C1Input 名前空間