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

ふりがな文字列を表すString値。
ふりがな文字列から変換候補リストを取得します。
構文
Public Shared Function GetConversionList( _
   ByVal readingString As String _
) As String()
public static string[] GetConversionList( 
   string readingString
)

パラメータ

readingString
ふりがな文字列を表すString値。

戻り値の型

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

public void GetConversionListFromGcIme()
{
    // 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.GetConversionList(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 GetConversionListFromGcIme()
    ' 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.GetConversionList(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 メンバ
GetReverseConversionList メソッド

 

 


© 2004-2015 GrapeCity inc. All rights reserved.