|
POST
|
Hi! You should be able add dynamic texts to the Report Header section. The method you listed is correct. It will definitely be a design challenge to site an array of text elements in the Header section. Are you seeing any word wrapping problems for texts with many characters? CreateRectangleParagraphGraphicElement should automatically wrap, so please let us know if you are running into issues there.
... View more
05-16-2024
02:58 PM
|
0
|
1
|
2231
|
|
POST
|
Hi Field values for a attributes are only displayed in the "ReportDetails" section of a Report. In the Report UI, you will notice that the "Insert Tab> Field button (Data group) is only enabled when you select the "Details" section in the Report TOC. In the screenshot below, notice how I have selected the Details section in the TOC and hence the Field button in the ribbon is enabled.
... View more
05-15-2024
02:12 PM
|
0
|
3
|
2252
|
|
POST
|
Hi, Convert your sketched geometry to a polygon using PolygonBuilderEx. Set the "HasZ" property to false. Like this: var poly = geometry as Polygon;
var builderPoly = new PolygonBuilderEx(poly);
builderPoly.HasZ = false; And then create your new feature by using the ToGeometry method. Like this: rowBuffer[featureClass.GetDefinition().GetShapeField()] = builderPoly.ToGeometry();
... View more
05-14-2024
02:48 PM
|
0
|
1
|
1119
|
|
POST
|
You can get the number of features in a layer using the Pro API's, FeatureClass.GetCount() method. var featureLayer = MapView.Active.Map.GetLayersAsFlattenedList().OfType<FeatureLayer>().FirstOrDefault(n => n.Name == "TestPoly");
QueuedTask.Run( () => {
var featureClass = featureLayer.GetFeatureClass();
var count = featureClass.GetCount();
});
... View more
05-14-2024
01:31 PM
|
0
|
0
|
656
|
|
POST
|
Hi Dynamic text with "field value" can be added to a Field element in a report. This allows you to modify the field values in your report for that particular field. You will see this behavior with the Report UI. This same behavior should be supported via Report creation with the API.
... View more
05-14-2024
10:23 AM
|
0
|
5
|
2308
|
|
POST
|
Trushar, At ArcGIS Pro 3.4, when you double click an addin to install it, you will be able to see the custom icon.
... View more
04-23-2024
01:28 PM
|
1
|
0
|
2591
|
|
POST
|
Pro will use the dependencies it needs from its bin location. ArcGIS Pro 3.3 will be available in a few weeks. This version of Pro uses updated System.ServiceModel.Primitives.dll - version 6.200.XXX. Can you please try using Pro 3.3 to see if your addin works correctly.
... View more
04-23-2024
09:14 AM
|
1
|
1
|
3369
|
|
POST
|
Hi, In order to use your own xaml for the button icon on the ribbon, please try the following: Right click the XAML in the solution explorer in Visual Studio and set the Build Action to "Content". Then in DAML, reference the xaml using relative paths, like this: overlayLargeImage="Images/OverlaySmall.xaml"
... View more
04-22-2024
12:46 PM
|
0
|
0
|
801
|
|
POST
|
Thanks for reporting this. I see this issue also. I will notify the Development team.
... View more
04-17-2024
12:40 PM
|
0
|
0
|
1301
|
|
POST
|
Hi You can use states and conditions to accomplish. Consult: ProGuide: Code Your Own States and Conditions I have attached an addin that demonstrates this: In the DAML, I have created a new condition usa_population_condition that is linked to the usa_population_state state. The tab element has this condition value added to the condition attribute. In the Module class, I listen to the ProjectOpenedEvent event and activate the state using FrameworkApplication.State.Activate method. Please note how I have set the autoLoad attribute in DAML to true so that the addin code launches when Pro loads and a project opens. Thanks Uma
... View more
04-17-2024
11:44 AM
|
0
|
3
|
1864
|
|
POST
|
If I turn on this check box, then I do not get the request to sign in every time. The code you shared opens Pro with no prompt to sign in.
... View more
04-16-2024
12:52 PM
|
0
|
1
|
953
|
|
POST
|
Here is an attached addin project with modified Evil genius. I see the images on the ribbon:
... View more
04-16-2024
12:05 PM
|
0
|
0
|
986
|
|
POST
|
Here is an attached addin project with modified Evil genius. I see the images on the ribbon:
... View more
04-16-2024
12:04 PM
|
0
|
0
|
986
|
|
POST
|
Hi, A .NET Addin can launch Geoprocessing tools (and display messages). Consult this doc for the various ways by which you use the .NET Pro SDK to run GP Tools: ProConcepts: Geoprocessing
... View more
04-16-2024
10:02 AM
|
0
|
1
|
1248
|
|
POST
|
Hi, In a scene, I was able to do the following with the Navigation Circle in planar mode. In all these options, the callbacks were hit. Can you please give me a little more info on how I can see the issue you are experiencing? pivot around the target point in all three axes, rotate the view direction zoom in and out on the target point, move the camera up and down, and look around from the current camera position. Thanks! Uma
... View more
04-16-2024
09:51 AM
|
0
|
1
|
1236
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-14-2026 09:54 AM | |
| 1 | 01-21-2026 10:48 AM | |
| 1 | 09-18-2025 03:09 PM | |
| 1 | 11-04-2025 08:25 AM | |
| 1 | 09-23-2025 09:31 AM |
| Online Status |
Offline
|
| Date Last Visited |
04-16-2026
09:00 AM
|