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

住所を示す System.String 値。
カスタマバーコード用キャラクタを取得します。
構文
Public Overloads Function GetPostalBarCodeValue( _
   ByVal address As String _
) As String
public string GetPostalBarCodeValue( 
   string address
)

パラメータ

address
住所を示す 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.