POST
|
Hi @KrisCulin
Here is more information on this issue you are seeing:
https://community.esri.com/t5/arcgis-pro-sdk-questions/color-transparency-problem-in-arcgis-pro-3-4-when/m-p/1558573#M12298
This post from @MichaelGrossman gives info on the BUG number and some workarounds. The fix is targeted for 3.4 sp1.
So sorry about this issue that is affecting your add-ins.
Uma
... View more
12-03-2024
02:47 PM
|
0
|
0
|
110
|
POST
|
Hi @Johannes_Strahler
Can you please made an Idea request for this on this page? ArcGIS Pro SDK Ideas
Thanks!
Uma
... View more
11-20-2024
11:34 AM
|
0
|
2
|
394
|
POST
|
This has been fixed in ArcGIS Pro 3.4. Pro 3.4 was released on November 7th.
Thanks!
... View more
11-20-2024
10:50 AM
|
0
|
0
|
150
|
POST
|
I can confirm that this issue is fixed in ArcGIS Pro 3.4. This was released on November 7th. Thanks!
... View more
11-20-2024
10:49 AM
|
0
|
0
|
155
|
POST
|
You can share addins from network shares. They are not available at the project (aprx) level.
... View more
09-17-2024
10:00 AM
|
0
|
0
|
375
|
POST
|
Would it be possible for you to zip up your code and send it over as an attachment?
... View more
09-11-2024
03:08 PM
|
0
|
0
|
646
|
POST
|
Hi @JonathanDewalt When I run the tool, the Create features pane needed to be open. If it was not open, the code did not work. In your scenario, was the Create Features pane open?
... View more
09-11-2024
10:00 AM
|
0
|
2
|
663
|
POST
|
Hi @JoePolaski Does your unit test code for OpenAsync look similar to this? // Open existing project
Project project = null;
try
{
project = await Project.OpenAsync("project path");
}
catch (Exception ex)
{
// exception
}
... View more
09-11-2024
09:34 AM
|
0
|
1
|
345
|
POST
|
Hi @SaiPeketi The sketch geometry in your tool can be any geometry type - point (which is a single click when you interact with the mapview), polygon, circle, etc.
... View more
09-11-2024
09:19 AM
|
1
|
1
|
485
|
POST
|
Hi @CarlosPiccirillo2 Which version of Pro 3x are you on? The GetMapView method needs to be on the Main CIM thread. It needs to be run under the context of the QueuedTask. Like this: //Reference the map frame and its map view
MapFrame mf_bmp = layout.FindElement("Map Frame") as MapFrame;
//On the worker thread
await QueuedTask.Run(() =>
{
MapView mv_bmp = mf_bmp.GetMapView(lytView);
if (mv_bmp != null) {
//Do something with the mapview
}
});
... View more
09-11-2024
09:15 AM
|
1
|
1
|
329
|
POST
|
@RITASHKOUL I do not have a set date yet for this functionality. I will post back as soon as I have more info.
... View more
08-30-2024
10:43 AM
|
0
|
0
|
184
|
POST
|
@Werk Check out this community sample that illustrates how to use ProgressDialog and CancelableProgressorSource to accomplish what you need: https://github.com/Esri/arcgis-pro-sdk-community-samples/tree/master/Framework/ProgressDialog Here is a small code snippet that highlights this: //on a Pro button click on the ribbon
protected override async void OnClick()
{
var pd = new ArcGIS.Desktop.Framework.Threading.Tasks.ProgressDialog(
"Processing...", 10, false );
var progressorSource = new CancelableProgressorSource(pd);
progressorSource.Max = 10;
await QueuedTask.Run(() =>
{
if (progressorSource.Progressor.CancellationToken.IsCancellationRequested)
return;
//Do business logic
progressorSource.Progressor.Value += 1;
progressorSource.Progressor.Message = "...";
});
}
... View more
08-23-2024
10:28 AM
|
0
|
0
|
298
|
POST
|
Are you looking for a Pro API\SDK method to create feature classes in a file geodatabase? If so, please check out the ProConcepts: DLL Our Pro SDK Documentation landing page has plenty of help to get started with the API.
... View more
08-23-2024
09:56 AM
|
0
|
1
|
248
|
POST
|
Hi, The Gallery class has methods to remove and move items in its collection. So the way I would do that is to: Create a "Customize Gallery" in your gallery. (Refer to the sample link that creates these kinds of links in a gallery. Clicking on this will invoke a command). When you click this, a modal ProWindow is displayed. In this window, you code the behavior to move your controls. A bit of coding involved, but the Pro API has the required pieces to accomplish this.
... View more
08-19-2024
11:36 AM
|
0
|
1
|
573
|
POST
|
Hi @ARWES24 Using the Pro SDK, you can create an Inline gallery on the Pro Ribbon similar to what you see for the GP inline gallery. There is a community sample that provides ideas on how this can be done: https://github.com/Esri/arcgis-pro-sdk-community-samples/tree/master/Content/OpenItemDialogBrowseFilter Thanks Uma
... View more
08-19-2024
10:14 AM
|
0
|
1
|
592
|
Title | Kudos | Posted |
---|---|---|
1 | a week ago | |
1 | a week ago | |
1 | Wednesday | |
1 | 2 weeks ago | |
1 | 3 weeks ago |
Online Status |
Online
|
Date Last Visited |
6 hours ago
|