ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Core.CIM Namespace / CIMRotationVisualVariable Class
Members Example

In This Topic
    CIMRotationVisualVariable Class
    In This Topic
    Represents a rotation visual variable.
    Object Model
    CIMRotationVisualVariable ClassCIMVisualVariableAuthoringInfo ClassCIMRotationVisualVariable ClassCIMRotationVisualVariable ClassCIMVisualVariableInfo ClassCIMVisualVariableInfo ClassCIMVisualVariableInfo Class
    Syntax
    Example
    Get the attribute rotation field of a layer
    var featureLayer = MapView.Active.Map.GetLayersAsFlattenedList().OfType<FeatureLayer>().FirstOrDefault();
    QueuedTask.Run(() =>
    {
      var cimRenderer = featureLayer.GetRenderer() as CIMUniqueValueRenderer;
      var cimRotationVariable = cimRenderer.VisualVariables.OfType<CIMRotationVisualVariable>().FirstOrDefault();
      var rotationInfoZ = cimRotationVariable.VisualVariableInfoZ;
      var rotationExpression = rotationInfoZ.ValueExpressionInfo.Expression; // this expression stores the field name  
    });
    Find connected attribute field for rotation
    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  
    });
    Inheritance Hierarchy

    System.Object
       ArcGIS.Core.CIM.CIMObject
          ArcGIS.Core.CIM.CIMVisualVariable
             ArcGIS.Core.CIM.CIMRotationVisualVariable

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also