ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / MapView Class / GetSelectedLockedSections Method
Example

In This Topic
    GetSelectedLockedSections Method
    In This Topic
    Returns the collection of voxel locked sections selected in the TOC.
    Syntax
    public IReadOnlyList<LockedSectionDefinition> GetSelectedLockedSections()
    Public Function GetSelectedLockedSections() As IReadOnlyList(Of LockedSectionDefinition)

    Return Value

    The collection of voxel locked sections selected in the TOC.
    Example
    Get/Set Selected Voxel Assets from the TOC
    var surfaces = MapView.Active.GetSelectedIsosurfaces();
    //set selected w/ MapView.Active.SelectVoxelIsosurface(isoSurface)
    var slices = MapView.Active.GetSelectedSlices();
    //set selected w/ MapView.Active.SelectVoxelSlice(slice)
    var sections = MapView.Active.GetSelectedSections();
    //set selected w/ MapView.Active.SelectVoxelSection(section)
    var locked_sections = MapView.Active.GetSelectedLockedSections();
    //set selected w/ MapView.Active.SelectVoxelLockedSection(locked_section)
    
    Get Selected Locked Section in TOC
    //var voxelLayer = ... ;
    //Must be on the QueuedTask.Run()
    
    var locked_section = MapView.Active?.GetSelectedLockedSections()?.FirstOrDefault();
    if (locked_section != null)
    {
    
    }
    
    Get Voxel Layer for the Selected Locked Section in TOC
    //var voxelLayer = ... ;
    //Must be on the QueuedTask.Run()
    
    VoxelLayer voxelLayer = null;
    var locked_section = MapView.Active?.GetSelectedLockedSections()?.FirstOrDefault();
    if (locked_section != null)
    {
        voxelLayer = locked_section.Layer;
        //TODO - use the layer
    }
    
    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