FindAddressCandidates method - Minimum candidate score

718
0
01-08-2013 08:38 AM
Russellnesbitt
New Contributor
Regarding Web page: http://resources.arcgis.com/en/help/soap/10.1/01vp/01vp00000096000000.htm

I used this example. It works, however I noticed that it never gets to the code to set the minimum candidate score. The LocatorArray never has that property value. How do I change the minimum candidate score?

' Change locator property value
Dim index2 As Integer
For index2 = 0 To locatorArray.Length - 1 Step index2 + 1
      Dim property2 As PropertySetProperty = locatorArray(index2)
      Select Case property2.Key
            Case "MinimumCandidateScore"
                  property2.Value = "80"
      End Select
Next
Tags (2)
0 Kudos
0 Replies