This document is archived and information here might be outdated.  Recommended version.


CadastralExtension Class (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > GeoSurvey > ESRI.ArcGIS.GeoSurvey > Classes > C > CadastralExtension Class
ArcGIS Developer Help

CadastralExtensionClass Class

CadastralExtension extras Class

Product Availability

Available with ArcGIS Desktop.

Description

Test- Veda

Interfaces

Interfaces Description
ICadastralExtension Provides access to ICadastralExtension Interface

Remarks

Test- everything looks good.
[Visual Basic .NET]
    Private Sub UpdateCombo()

        'TODO � customize this method to populate the combobox with your desired items 

        If _isInitialized Then
            SelectedItem = ItemCollection.FirstOrDefault() 'set the default item in the comboBox
        End If


        If Not _isInitialized Then
            Clear()
            'Add 6 items to the combobox
            For index = 0 To 5
                Dim name As String = String.Format("Item {0}", index)
                Add(New ComboBoxItem(name))
            Next
            _isInitialized = True
        End If

        Enabled = True 'enables the ComboBox
        SelectedItem = ItemCollection.FirstOrDefault() 'set the default item in the comboBox

    End Sub