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

In This Topic
    GetSelectedIsosurfaces Method
    In This Topic
    Returns the collection of voxel isosurfaces selected in the TOC.
    Syntax
    public IReadOnlyList<IsosurfaceDefinition> GetSelectedIsosurfaces()
    Public Function GetSelectedIsosurfaces() As IReadOnlyList(Of IsosurfaceDefinition)

    Return Value

    The collection of voxel isosurfaces 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)
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also