阅读:2282回复:5
选择一个点,怎么得到它的OBJECTID?选择一个点,怎么得到它的OBJECTID? |
|
|
1楼#
发布于:2004-07-17 18:59
关注
|
|
2楼#
发布于:2004-07-18 09:42
ding
|
|
|
3楼#
发布于:2004-07-18 19:24
If Not .Object Is Nothing Then
If TypeOf .Object Is IFeature Then
Dim pFeature As IFeature
Set pFeature = .Object
Debug.Print " Feature ID: " ; pFeature.OID
End If
End If
|
|
|
4楼#
发布于:2004-07-23 15:49
OK! ![]() |
|
|
5楼#
发布于:2004-07-29 11:18
IFeature ipFeature=ipRowObj.Row as IFeature; IRow ipRow=ipFeature as IRow; IRowBuffer ipRowBuffer = ipRow; ipRowBuffer.Fields.get_Field(i).Name ipRowBuffer.get_Value(i).ToString(); |
|