ArcGIS Pro 3.7 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 Function GetVariableProfile( _
       ByVal variableName As String _
    ) As VoxelVariableProfile
    public VoxelVariableProfile GetVariableProfile( 
       string variableName
    )

    Parameters

    variableName
    The variable name
    Example
    Set the Variable Profile Active for Selected Locked Section
    {
      // Note: call within 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 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also