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

都道府県の名前を示す System.String 値。
大口事業所の名前を示す System.String 値。
指定した都道府県から、指定した大口事業所名(漢字)を含むすべての大口事業所の住所を取得します。
構文
Public Overloads Function GetCompanyAddressByName( _
   ByVal prefectureName As String, _
   ByVal companyName As String _
) As IEnumerable(Of CompanyAddressInfo)

パラメータ

prefectureName
都道府県の名前を示す System.String 値。
companyName
大口事業所の名前を示す System.String 値。

戻り値の型

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

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

    // Query company address contains specified kanji name.
    System.Console.WriteLine(gcAddress1.GetCompanyAddressByName("東北電力"));

    // Get all company address that contains specified kanji name within specified prefecture.
    System.Console.WriteLine(gcAddress1.GetCompanyAddressByName("宮城県", "東北電力"));

    // Get the company address by name, with Address Kana queried.
    System.Console.WriteLine(gcAddress1.GetCompanyAddressByName("宮城県", "東北電力", true));
}
'  Please use the following namespace
'  using System.Windows.Forms;
'  using GrapeCity.Win.Editors;

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

    ' Query company address contains specified kanji name.
    System.Console.WriteLine(gcAddress1.GetCompanyAddressByName("東北電力"))

    ' Get all company address that contains specified kanji name within specified prefecture.
    System.Console.WriteLine(gcAddress1.GetCompanyAddressByName("宮城県", "東北電力"))

    ' Get the company address by name, with Address Kana queried.
    System.Console.WriteLine(gcAddress1.GetCompanyAddressByName("宮城県", "東北電力", True))
End Sub
参照

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

 

 


© 2004-2015 GrapeCity inc. All rights reserved.