alex_bn_lee

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

【C007】ArcGIS VBA - 字段名提取

字段名提取

用Collection对象方法:

 

Private Sub UIButtonFields_Click()
    
    ' Part 1: Get the feature class and its fields.
    Dim pMxDoc As IMxDocument
    Dim pMap As IMap
    Dim pFeatureLayer As IFeatureLayer
    Dim pFeatureClass As IFeatureClass
    Dim pFields As IFields
    Set pMxDoc = ThisDocument
    Set pMap = pMxDoc.FocusMap
    Set pFeatureLayer = pMap.Layer(0)
    Set pFeatureClass = pFeatureLayer.FeatureClass
    Set pFields = pFeatureClass.Fields
    
    ' Part 2: Prepare a list of fields and display the list.
    Dim ii As Long
    Dim aField As IField
    Dim fieldName As Variant
    Dim theList As New Collection
    Dim NameList As Variant
    ' Loop through each field, and add the field name to a list.
    For ii = 0 To pFields.FieldCount - 1
        Set aField = pFields.Field(ii)
        fieldName = aField.Name
        theList.Add (fieldName)
    Next
    ' Display the list of field names in a message box
    For Each fieldName In theList
        NameList = NameList & fieldName & Chr(13)
    Next fieldName
    MsgBox NameList, , "Field Names"

End Sub


用数组写的遍历整个框架内的要素类的字段名称:

Sub dkfdkl()
    Dim pDoc As IMxDocument
    Dim pMap As IMap
    Dim pFeatureLayer As IFeatureLayer
    Dim pFeatureClass As IFeatureClass
    Dim pFields As IFields
    
    Set pDoc = ThisDocument
    Set pMap = pDoc.FocusMap
    
    Dim ii As Long
    Dim jj As Long
    Dim aField As IField
    Dim fieldName As Variant
    Dim theList() As Variant
    Dim NameList As Variant
    
    For jj = 0 To pMap.LayerCount - 1
        Set pFeatureLayer = pMap.Layer(jj)
        Set pFeatureClass = pFeatureLayer.FeatureClass
        Set pFields = pFeatureClass.Fields
        ReDim theList(pFields.FieldCount - 1)
        
        NameList = NameList & vbCrLf & pFeatureLayer.Name & vbCrLf
        
        For ii = 0 To pFields.FieldCount - 1
            Set aField = pFields.Field(ii)
            fieldName = aField.Name
            theList(ii) = fieldName
        Next
        
        For Each fieldName In theList
            NameList = NameList & vbCrLf & fieldName
        Next
        NameList = NameList & vbCrLf
    Next
    Debug.Print NameList

End Sub



















posted on   McDelfino  阅读(740)  评论(0编辑  收藏  举报

编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· .NET10 - 预览版1新功能体验(一)
点击右上角即可分享
微信分享提示