|
POST
|
I think issue isn't with small image properties. It could be with large image properties
... View more
01-29-2026
07:03 AM
|
0
|
0
|
373
|
|
POST
|
Hi, Try to check "Build Action" of both images: CloudError16.png and CloudError32.png. Maybe build action for CloudError32.png is wrong.
... View more
01-29-2026
06:04 AM
|
0
|
2
|
380
|
|
POST
|
Hi, I think you use invalid url to connect to your portal. Your url must look like: "<url.Scheme>://<url.Host>/portal/" Try at first with Esri Community sample PortalInfoListAllFedServers
... View more
01-26-2026
10:23 PM
|
0
|
0
|
215
|
|
POST
|
I have added sample data to group layer and GetTemplates works on all layers. Have you installed SP1 on ArcGIS Pro 3.6?
... View more
01-25-2026
11:10 PM
|
0
|
0
|
310
|
|
POST
|
Hi, I have made a test with ArcGIS Pro 3.6 SP1 and Esri ArcGIS Pro SDK sample RowEventTest code and Esri sample data C:\Data\FeatureTest\FeatureTest.aprx. It works fine.
... View more
01-24-2026
03:23 AM
|
0
|
2
|
322
|
|
POST
|
Hi, There are similar threads: IPlugInWrapper Tab Caption won't change! - Esri Community How to change the caption of my tab and group thro... - Esri Community
... View more
01-11-2026
10:20 PM
|
0
|
1
|
321
|
|
POST
|
Hi, What do you want to do with references from GitHub? You can use latest ArcGIS Pro SKD reference. Make search for your interest and then switch to version you want.
... View more
01-09-2026
05:00 AM
|
0
|
2
|
880
|
|
POST
|
Hi, Take a look at the ArcGIS Pro SDK API reference. Code from reference below: protected override async void OnClick()
{
await QueuedTask.Run(() =>
{
var unit_formats = Enum.GetValues(typeof(UnitFormatType))
.OfType<UnitFormatType>().ToList();
System.Diagnostics.Debug.WriteLine("Default project units\r\n");
foreach (var unit_format in unit_formats)
{
var default_unit = DisplayUnitFormats.Instance.GetDefaultProjectUnitFormat(unit_format);
var line = $"{unit_format.ToString()}: {default_unit.DisplayName}, {default_unit.UnitCode}";
System.Diagnostics.Debug.WriteLine(line);
}
System.Diagnostics.Debug.WriteLine("");
});
}
... View more
01-07-2026
10:44 AM
|
1
|
0
|
455
|
|
POST
|
Hi, Each ArcGIS Runtime version has requirements for physical device operation system. For 200.8 and iOS there are requirements: iOS deployment requirements Operating systems iOS/iPadOS 18 iOS/iPadOS 17 If your device operation system doesn't match, application crashes. Your need to edit Visual Studio project file to meet these requirements: <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">17.0</SupportedOSPlatformVersion> Our application with ArcGIS Runtime 200.8 crashes on devices with iOS 15, but doesn't on iOS 16.
... View more
12-21-2025
11:49 PM
|
0
|
0
|
488
|
|
POST
|
Hi, As specified in the documentation, your IdentifyLayersAsync method initiates an identify operation on all layers in the view which will return the single visible topmost geoelement per layer only. There is overload of IdentifyLayersAsync method which allows you to specify the maximum number of geoelements to return per layer: public Task<IReadOnlyList<IdentifyLayerResult>> IdentifyLayersAsync(Point screenPoint, double tolerance, bool returnPopupsOnly, long maximumResultsPerLayer, CancellationToken cancellationToken) Or you could try to use spatial query to get all features at the clicked point.
... View more
12-17-2025
08:27 AM
|
0
|
1
|
397
|
|
POST
|
Hi, Sample from ArcGIS Pro API Reference: public bool IsTableVersioned(Geodatabase geodatabase, string tableName)
{
using (Table table = geodatabase.OpenDataset<Table>(tableName))
{
// Check table version type
RegistrationType registrationType = table.GetRegistrationType();
if (registrationType == RegistrationType.Versioned)
{
return true;
}
}
return false;
}
... View more
12-17-2025
07:07 AM
|
1
|
0
|
565
|
|
POST
|
I don't know another way. You can try to run all your code in Python without using Geoprocessing (call python code from .NET)
... View more
12-11-2025
06:53 AM
|
1
|
0
|
540
|
|
POST
|
Hi, You can use MakeFeatureLayer to create a layer from a Feature Class, but you need to change GPExecuteToolFlags from: GPExecuteToolFlags.AddToHistory to: GPExecuteToolFlags.AddOutputsToMap | GPExecuteToolFlags.AddToHistory ArcGIS Pro geoprocessing without GPExecuteToolFlags.AddOutputsToMap doesn't add layer to map, why your management.SelectLayerByLocation can't find layer from input parameters.
... View more
12-10-2025
05:53 AM
|
1
|
2
|
567
|
|
POST
|
I can confirm this problem still exists in ArcGIS Pro 3.6.0 and workaround works
... View more
12-09-2025
03:51 AM
|
0
|
0
|
817
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 3 weeks ago | |
| 1 | 03-23-2026 11:44 AM | |
| 1 | 05-22-2024 11:48 PM | |
| 1 | 02-27-2026 10:33 AM | |
| 1 | 01-07-2026 10:44 AM |
| Online Status |
Offline
|
| Date Last Visited |
Saturday
|