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

住所を示す System.String 値。
住所に関連付けられた参照郵便番号を示す 7 桁の数字 System.String 値。
指定した郵便番号と住所から、カスタマバーコード用キャラクタを取得します。
構文
Public Overloads Function GetPostalBarCodeValue( _
   ByVal address As String, _
   ByVal zipCode As String _
) As String
public string GetPostalBarCodeValue( 
   string address,
   string zipCode
)

パラメータ

address
住所を示す System.String 値。
zipCode
住所に関連付けられた参照郵便番号を示す 7 桁の数字 System.String 値。

戻り値の型

カスタマバーコード用キャラクタを示す System.String 値。
解説
郵便番号が無効な場合は空の文字列が返されます。
使用例
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

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

    // Get the JP Postal BarCode value with full address.
    System.Console.WriteLine(gcAddress1.GetPostalBarCodeValue("岩手県 紫波郡矢巾町 大字煙山 第3地割14番地2"));
    // Output:
    // "02836233-14-2"

    // Get the JP Postal BarCode value with partial address + ZipCode.
    System.Console.WriteLine(gcAddress1.GetPostalBarCodeValue("泉区 紫山 3-1-4", "9813205"));
    // Output:
    // "98132053-1-4"
}
'  Please use the following namespace
'  using System.Windows.Forms;
'  using GrapeCity.Win.Editors;

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

    ' Get the JP Postal BarCode value with full address.
    System.Console.WriteLine(gcAddress1.GetPostalBarCodeValue("岩手県 紫波郡矢巾町 大字煙山 第3地割14番地2"))
    ' Output:
    ' "02836233-14-2"

    ' Get the JP Postal BarCode value with partial address + ZipCode.
    System.Console.WriteLine(gcAddress1.GetPostalBarCodeValue("泉区 紫山 3-1-4", "9813205"))
    ' Output:
    ' "98132053-1-4"
End Sub
参照

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

 

 


© 2004-2015 GrapeCity inc. All rights reserved.