PowerTools InputMan for ASP.NET 8.0J
GetAddressFromPhoneCode(String) メソッド
使用例 

市外局番(String 型)
指定した市外局番に一致する住所を取得します。
構文
Public Overloads Function GetAddressFromPhoneCode( _
   ByVal phoneCode As String _
) As IEnumerable(Of PhoneCodeInfo)
public IEnumerable<PhoneCodeInfo> GetAddressFromPhoneCode( 
   string phoneCode
)

パラメータ

phoneCode
市外局番(String 型)

戻り値の型

検索された住所を示す PhoneCodeInfo オブジェクトのコレクション。
使用例
次のサンプルコードはGetAddressFromPhoneCodeメソッドの使用方法を示します。
Imports GrapeCity.Web.Input.IMExtenders;

Public Sub GetAddressFromPhoneCodeSample()
    ' GcAddressクラスのインスタンスを作成します。
    Dim gcAddress1 As New GcAddress()

    ' 市外局番"022"に該当する住所を検索します。
    For Each info As PhoneCodeInfo In GcAddress1.GetAddressFromPhoneCode("022")
        System.Diagnostics.Debug.WriteLine(info.ToString())
    Next
End Sub
using GrapeCity.Web.Input.IMExtenders

public void GetAddressFromPhoneCodeSample()
{
    // GcAddressクラスのインスタンスを作成します。
    GcAddress gcAddress1 = new GcAddress();

    // 市外局番"022"に該当する住所を検索します。
    foreach (PhoneCodeInfo info in GcAddress1.GetAddressFromPhoneCode("022"))
    {
        System.Diagnostics.Debug.WriteLine(info.ToString());
    }
}
参照

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

 

 


© 2005-2015 GrapeCity inc. All rights reserved.