|
POST
|
Hi, I have tried on community sample arcgis-pro-sdk-community-samples/Map-Exploration/TableControl at master · Esri/arcgis-pro-sdk-community-samples · GitHub I have checked ActiveRowIndex on Zoom to row. ActiveRowIndex works fine. Multiple selection with shift + click selects from old ActiveRowIndex to new ActiveRowIndex.
... View more
07-26-2021
04:54 AM
|
0
|
1
|
1559
|
|
POST
|
Have you tried to execute CreateRelationshipClass tool from ArcGIS Pro? Run the tool then go to History and right click mouse on CreateRelationshipClass record and select Copy Python Command from context menu. Paste content to Notepad and check Python script for relationship class path parameter.
... View more
07-22-2021
11:56 AM
|
0
|
2
|
1994
|
|
POST
|
It depends on your situation. Our application for ArcGIS Pro consist of more than 10 add-ins (more than 50 buttons and tools) but we use one extension for all of them. One add-in (module) is responsible for extension state managing. Other add-ins (modules) reacts to extension state changes via condition which changes depend on extension state. To put extension in each add-in makes reason if each add-in is different application.
... View more
07-22-2021
11:39 AM
|
0
|
0
|
1631
|
|
POST
|
Hi, You need to save project. Without saving project external extension state will not be saved. If extension is yours then you need to manage reading from and writing to project. How to save your extension state you can find in BackStage_PropertyPage sample: arcgis-pro-sdk-community-samples/Framework/BackStage_PropertyPage at master · Esri/arcgis-pro-sdk-community-samples · GitHub
... View more
07-22-2021
12:11 AM
|
0
|
2
|
1650
|
|
POST
|
Hi, Situation with ArcGIS Pro SDK has changed since 2017. We have used workaround with adding database to project Catalog-Databases. Then we checked database connection properties with all databases added to Catalog-Databases. On right one we used GDBProjectItem Path property to get right sde file path. All registered to project databases you can get using code: IEnumerable<GDBProjectItem> projectDatabases = Project.Current.GetItems<GDBProjectItem>(); We do not use this way now. We are trying to work without sde file path or save it to project as settings. The copy of sde file you can get by calling GetPath from Geodatabase object. Could you explain why do you need right sde file path? Maybe I will suggest you a way how to avoid sde file path.
... View more
07-21-2021
11:26 PM
|
0
|
4
|
2001
|
|
POST
|
Hi, You have found the right ProGuide page. How to access add-in resources you can find in Accessing document content chapter. First step gives you folder path of your resource file, second constructs full path of your resource. Remember to specify document content as described in chapter above.
... View more
07-18-2021
10:38 PM
|
1
|
0
|
3601
|
|
POST
|
Hi, There is no one way of migrating ArcMap application to ArcGIS Pro add-in. There is official Esri page for this: https://github.com/esri/arcgis-pro-sdk/wiki/ProConcepts-Migrating-to-ArcGIS-Pro Similar questions and discussions you can find here: ArcMap addin migration to Pro - Esri Community porting C#.net ArcMap add-ins to ArcGIS Pro Add-in... - Esri Community
... View more
07-13-2021
10:16 PM
|
0
|
0
|
1839
|
|
POST
|
Hi, You can find how to show/hide attribute fields using code here: https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-change-field-visibility-and-alias/td-p...
... View more
07-08-2021
11:22 PM
|
1
|
0
|
3067
|
|
POST
|
Hi, You can find how to show/hide attribute fields here: https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-change-field-visibility-and-alias/td-p/816885
... View more
07-08-2021
11:15 PM
|
0
|
0
|
6120
|
|
POST
|
Hi, You can try to use GeometryEngine Move functionality https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/#topic8262.html But you need to calculate x, y for your moving
... View more
07-08-2021
06:45 AM
|
0
|
0
|
2184
|
|
POST
|
Hi, Your code works fine on ArcGIS 10.3 if omit part of condition checking: if (feature.Shape.GeometryType == esriGeometryType.esriGeometryPolygon && !objClasses.Contains(feature.Class))
{
objClasses.Add(feature.Class);
} So issue is with layer name and not with geometry type
... View more
07-07-2021
11:25 PM
|
0
|
1
|
2776
|
|
POST
|
Hi, You are in the wrong thread. You need to post your question here: https://community.esri.com/t5/arcgis-runtime-sdks/ct-p/arcgis-runtime-sdks
... View more
06-20-2021
11:15 PM
|
0
|
0
|
2463
|
|
POST
|
Hi, I thought the same but I have found GetUser function which returns portal user info. So I hope it is not only one function independent from database.
... View more
06-11-2021
12:40 PM
|
0
|
0
|
1582
|
|
POST
|
Hi, Is it possible to read ArcGIS Pro project settings from Arcade expression? I would like to write attribute rules with Arcade where I would like to use information stored in ArcGIS Project (custom settings).
... View more
06-11-2021
01:08 AM
|
0
|
2
|
1637
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 6 hours ago | |
| 2 | 04-24-2026 08:33 AM | |
| 1 | 03-23-2026 11:44 AM | |
| 1 | 05-22-2024 11:48 PM | |
| 1 | 02-27-2026 10:33 AM |
| Online Status |
Online
|
| Date Last Visited |
6 hours ago
|