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

都道府県の名前を示す System.String 値。
大口事業所名の読みがなを示す System.String 値。
System.Boolean 値。返された CompanyAddressInfo レコードに住所の読みがなを含める場合は true。それ以外の場合は false
指定した都道府県から、指定した大口事業所名の読みがな(全角または半角カタカナ)を含むすべての大口事業所の住所を取得します。戻り値に大口事業所の住所の読みがなを含めるかどうかを指定できます。
構文

パラメータ

prefectureName
都道府県の名前を示す System.String 値。
companyKana
大口事業所名の読みがなを示す System.String 値。
generateCompanyAddressKana
System.Boolean 値。返された CompanyAddressInfo レコードに住所の読みがなを含める場合は true。それ以外の場合は false

戻り値の型

指定した条件に一致する大口事業所の住所を示す CompanyAddressInfo コレクション。
解説
companyKana プロパティがその読みがなに含まれる大口事業所が検索されます。
使用例
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void QueryAddressByCompanyKana()
{
    // Creates instance of GcAddress component.
    GcAddress gcAddress1 = new GcAddress();

    // Query company address contains specified kana.
    System.Console.WriteLine(gcAddress1.GetCompanyAddressByKana("ギンコウ"));

    // Get all company address that contains specified kanji within specified prefecture.
    System.Console.WriteLine(gcAddress1.GetCompanyAddressByKana("宮城県", "ギンコウ"));

    // Gets the company address by kana, with Address Kana queried.
    System.Console.WriteLine(gcAddress1.GetCompanyAddressByKana("宮城県", "ギンコウ", true));
}
'  Please use the following namespace
'  using System.Windows.Forms;
'  using GrapeCity.Win.Editors;

Public Sub QueryAddressByCompanyKana()
    ' Creates instance of GcAddress component.
    Dim gcAddress1 As New GcAddress()

    ' Query company address contains specified kana.
    System.Console.WriteLine(gcAddress1.GetCompanyAddressByKana("ギンコウ"))

    ' Get all company address that contains specified kanji within specified prefecture.
    System.Console.WriteLine(gcAddress1.GetCompanyAddressByKana("宮城県", "ギンコウ"))

    ' Gets the company address by kana, with Address Kana queried.
    System.Console.WriteLine(gcAddress1.GetCompanyAddressByKana("宮城県", "ギンコウ", True))
End Sub
参照

GcAddress クラス
GcAddress メンバ
オーバーロード一覧

 

 


© 2004-2015 GrapeCity inc. All rights reserved.