PowerTools InputMan for Windows Forms 8.0J
GetReverseConversionList メソッド
使用例 

読みがなを取得する文字列を表すString値。
漢字から変換した読みがなリストを取得します。
構文
Public Shared Function GetReverseConversionList( _
   ByVal resultString As String _
) As String()
public static string[] GetReverseConversionList( 
   string resultString
)

パラメータ

resultString
読みがなを取得する文字列を表すString値。

戻り値の型

読みがなりストを表すString配列。 resultStringがNothingまたはString.Empryのときは、 配列長が0のString配列を返します。
解説
このメソッドを使用すると、変換候補リストからSystem.Stringの配列を取得できます。
使用例
GcTextBoxGcComboBox コントロールを作成するコード例を次に示します。この例では GetReverseConversionList メソッドの使用方法を示しています。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void GetReverseConversionListFromGcIme()
{
    // Creates an instance of the GcTextBox control.
    GcTextBox gcTextBox1 = new GcTextBox();
    // Creates an instance of the GcComboBox control.
    GcComboBox gcComboBox1 = new GcComboBox();
    // Get a list of characters in an array that can be converted.
    String[] sl = GcIme.GetReverseConversionList(gcTextBox1.Text);
    gcComboBox1.Items.Clear();
    foreach (string s in sl)
    {
        gcComboBox1.Items.Add(s);
    }

    // Sets the text of the GcComboBox and drop the list down.
    if (sl.Length > 0)
    {
        gcComboBox1.Text = sl[0];
        gcComboBox1.DroppedDown = true;
    }
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub GetReverseConversionListFromGcIme()
    ' Creates an instance of the GcTextBox control.
    Dim gcTextBox1 As New GcTextBox()
    ' Creates an instance of the GcComboBox control.
    Dim gcComboBox1 As New GcComboBox()
    ' Get a list of characters in an array that can be converted.
    Dim sl As [String]() = GcIme.GetReverseConversionList(gcTextBox1.Text)
    gcComboBox1.Items.Clear()
    For Each s As String In sl
        gcComboBox1.Items.Add(s)
    Next

    ' Sets the text of the GcComboBox and drop the list down.
    If sl.Length > 0 Then
        gcComboBox1.Text = sl(0)
        gcComboBox1.DroppedDown = True
    End If
End Sub
参照

GcIme クラス
GcIme メンバ
GetConversionList メソッド

 

 


© 2004-2015 GrapeCity inc. All rights reserved.