// 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