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

C1.Win.C1Input.4.5.2 アセンブリ > C1.Win.C1Input 名前空間 : CharHelper クラス
Provides a set of static methods to work with Japanese encodings.
オブジェクト モデル
CharHelper クラス
シンタックス
'宣言
 
Public MustInherit NotInheritable Class CharHelper 
public static class CharHelper 
使用例
Shows how to use CharHelper in System.Windows.Forms.Control.KeyPress event handler for conditioning filtering inputs.
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 名前空間