|
POST
|
Tabs are configured in DAML only. There is no model object available in the SDK.
... View more
Wednesday
|
0
|
0
|
51
|
|
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
Wednesday
|
0
|
1
|
89
|
|
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
|
263
|
|
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
|
240
|
|
POST
|
no. any ordering/sorting wld have to be done "after the fact"
... View more
10-02-2025
03:40 PM
|
2
|
0
|
347
|
|
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
|
118
|
|
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
|
360
|
|
POST
|
sorry, guess that's what i get for typing something in to the chat from memory...it's "GetMapView". https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic22456.html
... View more
08-20-2025
10:12 AM
|
0
|
0
|
1043
|
|
POST
|
Zoom To Map View takes the extent from the map u pick (on the Zoom to Map View dropdown) and applies it to the map view in the (selected) map frame. So something like var mv = mapFrame.GetActiveView(LayoutView.Active); mv.ZoomTo(whateverExtentYouWant);//Assuming 2D map and so forth
... View more
08-01-2025
10:56 AM
|
0
|
2
|
1197
|
|
POST
|
additionally, to activate the GP pane, change your code to this: var pane = FrameworkApplication.DockPaneManager.Find("esri_geoprocessing_toolBoxes");
if (pane != null)
pane.Activate();//Show the GP dialog
//if (pane == null){MessageBox.Show("Geoprocessing Pane must be open to run tool");
//return;} if the pane is already activated it will be a no-op
... View more
07-02-2025
04:14 PM
|
0
|
0
|
329
|
|
POST
|
This has been added for 3.6. You will be able to write code similar to: var catalogWindow = Project.GetCatalogPane() as ICatalogWindow;
if (!catalogWindow.IsActiveWindow)
return;
var catContentType = catalogWindow.GetCurrentContentType();
if (catContentType != CatalogContentType.Portal)
{
//show the portal tab
catalogWindow.SetContentTypeAsync(CatalogContentType.Portal);
}
catalogWindow.SetSecondaryPortalContentTypeAsync(
CatalogSecondaryPortalContentType.UserOrganization);
... View more
07-02-2025
03:50 PM
|
1
|
0
|
377
|
|
POST
|
pre-process the string. i think "'" has to be escaped with another "'". var str = "This has an embedded ' in it";
var strEscaped = str.Replace("'", "''");
qf.WhereClause = $"......'{strEscaped}'";
... View more
05-01-2025
10:45 AM
|
3
|
0
|
516
|
|
POST
|
sounds like u need Geometry.Engine.Difference https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic8216.html
... View more
04-08-2025
11:25 AM
|
1
|
0
|
671
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Wednesday | |
| 1 | 10-14-2025 05:01 PM | |
| 1 | 10-14-2025 05:06 PM | |
| 2 | 10-02-2025 03:40 PM | |
| 1 | 07-02-2025 03:50 PM |
| Online Status |
Offline
|
| Date Last Visited |
16 hours ago
|