ArcObjects Library Reference (LocationUI)  

IAddressUI.RuntimeOptions Method

Opens the Geocoding Options dialog.

[Visual Basic .NET]
Public Function RuntimeOptions ( _
    ByVal parentWindow As Integer, _
    ByVal Locator As ILocator, _
    ByVal bCanChangeOutputFields As Boolean, _
    ByVal title As String _
) As Boolean
[C#]
public bool RuntimeOptions (
    int parentWindow,
    ILocator Locator,
    bool bCanChangeOutputFields,
    string title
);

Product Availability

Available with ArcGIS Desktop.

Remarks

The RuntimeOptions method displays the user interface for modifying the runtime options for the locator. This method returns a value of True if the user keeps the changes that are made through the user interface, and False if they do not. Changing the locator's options using this user interface does not modify the locator stored by the locator workspace.

The parentWindow parameter is a long integer value containing the handle to the parent window for the user interface. The user interface appears modally on top of this window.

The Locator property is a reference to the locator whose runtime options you want to change using the user interface.

The bCanChangeOuputFields parameter is a boolean value indicating if the user can modify the set of output fields created by the locator. In general, the user can change the ouput fields at any time except when rematching a geocoded feature class, since the fields contained by the geocoded feature class are defined when the feature class is created.

The Title parameter is a string containing the title that you want the user interface to display.

 

See Also

IAddressUI Interface