ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / VoxelLayer Class / GetVariableProfile Method
The variable name
Example

In This Topic
    GetVariableProfile Method (VoxelLayer)
    In This Topic
    Finds a variable profile via variable name.
    Syntax
    public VoxelVariableProfile GetVariableProfile( 
       string variableName
    )
    Public Function GetVariableProfile( _
       ByVal variableName As String _
    ) As VoxelVariableProfile

    Parameters

    variableName
    The variable name
    Example
    Set the Variable Profile Active for Selected Locked Section
    //Must be on the QueuedTask.Run()
    
    var locked_section = MapView.Active?.GetSelectedLockedSections()?.FirstOrDefault();
    if (locked_section != null)
    {
        var variable = locked_section.Layer.GetVariableProfile(locked_section.VariableName);
        locked_section.Layer.SetSelectedVariableProfile(variable);
    }
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also