ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Mapping.Voxel Namespace / LockedSectionDefinition Class / VariableName Property
Example

In This Topic
    VariableName Property (LockedSectionDefinition)
    In This Topic
    Gets the variable name that this section is associated with.
    Syntax
    Public ReadOnly Property VariableName As String
    public string VariableName {get;}
    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