Tagged Questions
5
votes
3answers
131 views
How can I determine the layer name in an edit session?
I have a problem with an editor extension in an Add-In for ArcGIS 10.
The editor extension listens on different events occuring on shapefile layers via registering listeners:
...
2
votes
1answer
88 views
How to cancel the edit session?
I want to prevent the user from starting an edit session under certain conditions.
How can I do that?
void m_editEvents_OnStartEditing()
{
// Code
}
2
votes
0answers
78 views
Is it possible to lock a single feature from editing in ArcObjects?
We're developing an ArcMap addin. Now we need a way to lock a feature from editing/deleting. Is this possible with ArcObjects or do we have to create our own implementation of locking?
Example:
User ...
4
votes
1answer
338 views
Can you edit an SDE table via ArcObjects when not added to ArcMap
I have a table that is in SDE, what I want to do is in my userform click on the "Save" button, and the table will be edited even though it is not within the map document. Is this possible?
I have ...
2
votes
1answer
172 views
ArcGIS Editor Attributes Dialog
Is there a way to update the Editor Attributes dialog to populate/refresh on ArcObject feature selection code? The attributes dialog only seems to respond to a manual view selection or manual table ...
4
votes
0answers
118 views
ArcObjects edit/update ODBC Oracle table
Can an ODBC Oracle table attached by OLE within ArcMap be edited/updated by using ArcObjects? If so, what are the procedural steps for doing this? Are there code examples out there showing how to do ...
3
votes
2answers
213 views
IApplication reference with ArcObjects Class Extension
I have an ArcObjects (9.3) Class Extension which has an event handler for OnCreate so that feature properties can be manipulated / assigned when a feature is first created.
Some of the functionality ...
2
votes
1answer
266 views
How to cast SDE table to IFeatureClassLoad
How do you cast an SDE table to IFeatureClassLoad using ArcObjects? I'm getting an error with this attempt below which is not the correct method:
Dim pSDEFeatWksp As IFeatureWorkspace = ...
3
votes
2answers
513 views
Replicating ArcMap's Point Sketch Geometry Editing (Feature Templates) in ArcObjects
I'm looking for a way to place, select, move, delete features inside a custom C# ArcObjects application (using AxMapControl). I found the exact behavior in ArcMap, but I want to save the user some ...
1
vote
0answers
895 views
Edit SDE table with ArcObjects - continued [closed]
Update
So, I believe I'm getting closer to being able to edit my sde table, however now I'm getting stuck on this line:
Dim updateCursor As ICursor = table2.Update(Nothing, True)
With this ...
4
votes
1answer
419 views
Edit SDE table with ArcObjects
The link below provides a code snippet for editing an SDE table with ArcObjects. Are there any other or newer code examples out there of how to edit a SDE table by using ArcObjects?
Edit SDE ...
5
votes
1answer
329 views
New Snapping while editing vertex's in ArcEngine 10
Is it possible to use the new (not classic) snapping functionality when editing the vertices of a polygon feature in ArcEngine 10. I would like editing vertices to behave exactly the same as editing ...