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

出力先となるコントロールを表すControlオブジェクト。
変換対象となる文字列を表すString値。
変換動作の形式を表すConvertMode列挙体。
出力先を指定してかな漢字変換を実行します。
構文
Public Overloads Shared Sub Convert( _
   ByVal target As Control, _
   ByVal convertString As String, _
   ByVal mode As ConvertMode _
) 
public static void Convert( 
   Control target,
   string convertString,
   ConvertMode mode
)

パラメータ

target
出力先となるコントロールを表すControlオブジェクト。
convertString
変換対象となる文字列を表すString値。
mode
変換動作の形式を表すConvertMode列挙体。
解説
このメソッドを使用すると、指定したコントロール上で、ConvertModeに従って文字列を変換できます。
使用例
GcTextBox コントロールを作成するコード例を次に示します。この例では Convert メソッドの使用方法を示しています。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

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

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

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

 

 


© 2004-2015 GrapeCity inc. All rights reserved.