ArcObjects Library Reference (Location)  

IGeocodingProperties.DefaultInputFieldNames Property

Recognized names for a required input field.

[Visual Basic .NET]
Public Sub set_DefaultInputFieldNames ( _
    ByVal addressField As String, _
    ByVal A_2 As Object _
)
[C#]
public void set_DefaultInputFieldNames (
    string addressField,
    object A_2
);
[C++]
HRESULT put_DefaultInputFieldNames(
  BSTR addressField,
  VARIANT 
);
[C++]

Parameters

addressField [in]   addressField is a parameter of type BSTR [in]    is a parameter of type VARIANT

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

The DefaultInputFieldNames property allows you to specify the default input field names for an address input field. The locator uses the field names that you specify here to search the fields that contain address information in a table of addresses that you want to geocode.

To specify the default input field names for an input address field, use the IAddressInputs::AddressFields property to get a Fields object that contains the address input field definitions. You can use the IAddressInputs::DefaultInputFieldNames property to get an Array of strings containing the default input field names for a specific field. You can edit this Array, and then set the default input field names for the locator using this property.

See Also

IGeocodingProperties Interface