|
POST
|
The api is not extensible in that regard. You would basically have to write something like: MyModule.Current.MyCustomExportMethod(MapView.Active, ....) assuming that u cld actually access, via the available public api, the relevant properties, etc. u wld need for implementation of your custom export
... View more
3 weeks ago
|
0
|
0
|
122
|
|
POST
|
Perhaps "Clone"? var lv = LayoutView.Active;
var layout = lv?.Layout;
if (layout == null) return;
QueuedTask.Run(() =>
{
var sel_elems = lv.GetSelectedElements()
.OfType<GraphicElement>()?.ToList() ??
new List<GraphicElement>();
foreach(var elem in sel_elems)
{
var ge_clones = elem.Clone("Cloned_").ConvertToGraphics();
if (ge_clones != null)
{
foreach(var ge_clone in ge_clones)
{
//TO DO - something with the converted elements
//...
... View more
3 weeks ago
|
0
|
0
|
92
|
|
POST
|
This is now supported starting at Pro 3.6. https://www.nuget.org/packages/Esri.ArcGISPro.Gdal/3.6.0 Please go to Visual Studio, Nuget Package Manager and in "Browse" search for "Esri Gdal", "Esri ArcGISPro Gdal" or variants thereof.
... View more
3 weeks ago
|
1
|
0
|
275
|
|
POST
|
Perhaps? https://pro.arcgis.com/en/pro-app/latest/tool-reference/3d-analyst/an-overview-of-the-3d-intersections-toolset.htm
... View more
01-08-2026
02:15 PM
|
1
|
1
|
1065
|
|
POST
|
See also: https://github.com/esri/arcgis-pro-sdk/wiki/ProConcepts-Content-and-Items#project-units
... View more
01-08-2026
02:03 PM
|
1
|
0
|
475
|
|
POST
|
Tabs are configured in DAML only. There is no model object available in the SDK.
... View more
12-17-2025
01:19 PM
|
0
|
0
|
305
|
|
POST
|
https://github.com/esri/arcgis-pro-sdk/wiki/ProConcepts-Advanced-Topics#side-by-side-loading-to-resolve-addin-dependencies you will probably want to load your addin side-by-side
... View more
12-17-2025
11:36 AM
|
0
|
1
|
587
|
|
POST
|
VS 2026 will be supported at 3.7, the next release of Pro.
... View more
12-17-2025
11:33 AM
|
3
|
0
|
1536
|
|
POST
|
Change BeginInvoke to Invoke and remove the await (I also dont follow why the "async" on the UI delegate - can u remove that also)... See if that makes a difference.
... View more
10-14-2025
05:06 PM
|
1
|
0
|
622
|
|
POST
|
Although this doesnt directly answer your question, these links are to sessions that were presented at Palm Springs for working with Feature Services in 2019 and 2020. Even though they are a little dated, the information they contain - eg how feature services rename tables/feature classes when services are published is still relevant. Understanding FeatureServices - A Developers Guide (2019) Understanding Feature Services (2020)
... View more
10-14-2025
05:01 PM
|
1
|
0
|
517
|
|
POST
|
no. any ordering/sorting wld have to be done "after the fact"
... View more
10-02-2025
03:40 PM
|
2
|
0
|
929
|
|
POST
|
Once a project is open, the application does not return to the "there is not a project open" state. That only occurs at start up. To "reset" a project/addin you would essentially have to open _another_ project and, from "that" project, re-open your desired one.
... View more
10-02-2025
10:34 AM
|
0
|
0
|
288
|
|
POST
|
I am pretty sure a row cursor always returns records in object id order - i.e. in the order in which they are read from the underlying table.
... View more
10-02-2025
10:30 AM
|
0
|
2
|
942
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 01-08-2026 02:03 PM | |
| 1 | 01-08-2026 02:15 PM | |
| 3 | 12-17-2025 11:33 AM | |
| 1 | 12-17-2025 01:16 PM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|