ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Core.CIM Namespace / CIMSimpleRenderer Class / VisualVariables Property
Example

In This Topic
    VisualVariables Property (CIMSimpleRenderer)
    In This Topic
    Gets or sets the visual variables.
    Syntax
    Public Property VisualVariables As CIMVisualVariable()
    public CIMVisualVariable[] VisualVariables {get; set;}
    Example
    Find connected attribute field for rotation
    {
        // get the CIM renderer from the layer
        // Note: needs to be called on the MCT
        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  
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also