【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
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· .NET10 - 预览版1新功能体验(一)