public CIMVisualVariable[] VisualVariables {get; set;}
Public Property VisualVariables As CIMVisualVariable()
public CIMVisualVariable[] VisualVariables {get; set;}
Public Property VisualVariables As CIMVisualVariable()
var featureLayer = MapView.Active.Map.GetLayersAsFlattenedList().OfType<FeatureLayer>().FirstOrDefault(); ArcGIS.Desktop.Framework.Threading.Tasks.QueuedTask.Run(() => { // get the CIM renderer from the layer var cimRenderer = featureLayer.GetRenderer() as ArcGIS.Core.CIM.CIMSimpleRenderer; // get the collection of connected attributes for rotation var cimRotationVariable = cimRenderer.VisualVariables.OfType<ArcGIS.Core.CIM.CIMRotationVisualVariable>().FirstOrDefault(); // the z direction is describing the heading rotation var rotationInfoZ = cimRotationVariable.VisualVariableInfoZ; var rotationExpression = rotationInfoZ.Expression; // this expression stores the field name });
Target Platforms: Windows 11, Windows 10