PowerTools InputMan for Windows Forms 8.0J
Convert(String,ConvertMode) メソッド
使用例 

変換対象となる文字列を表すString値。
変換動作の形式を表すConvertMode列挙体。
かな漢字変換を実行します。
構文
Public Overloads Shared Sub Convert( _
   ByVal convertString As String, _
   ByVal mode As ConvertMode _
) 
public static void Convert( 
   string convertString,
   ConvertMode mode
)

パラメータ

convertString
変換対象となる文字列を表すString値。
mode
変換動作の形式を表すConvertMode列挙体。
解説
変換後の文字列は、フォーカスのあるコントロールのText プロパティに渡されます。
使用例
GcTextBox コントロールを作成するコード例を次に示します。この例では Convert メソッドの使用方法を示しています。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void ConvertWithoutTargetControlMethod()
{
    // Creates an instance of the GcTextBox control.
    GcTextBox gcTextBox1 = new GcTextBox();
    // Sets the ImeMode to Hiragana.
    gcTextBox1.ImeMode = ImeMode.Hiragana;
    // Selected the gcTextBox1 and focused it.
    gcTextBox1.Select();
    // Converts the string and insert to the gcTextBox1.
    GcIme.Convert("グレープシティかぶしきがいしゃ", ConvertMode.ShowCandidate);
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub ConvertWithoutTargetControlMethod()
    ' Creates an instance of the GcTextBox control.
    Dim gcTextBox1 As New GcTextBox()
    ' Sets the ImeMode to Hiragana.
    gcTextBox1.ImeMode = ImeMode.Hiragana
    ' Selected the gcTextBox1 and focused it.
    gcTextBox1.[Select]()
    ' Converts the string and insert to the gcTextBox1.
    GcIme.Convert("グレープシティかぶしきがいしゃ", ConvertMode.ShowCandidate)
End Sub
参照

GcIme クラス
GcIme メンバ
オーバーロード一覧
Convert メソッド

 

 


© 2004-2015 GrapeCity inc. All rights reserved.