ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Mapping.Voxel Namespace / SliceDefinition Class / Layer Property
Example

In This Topic
    Layer Property (SliceDefinition)
    In This Topic
    Gets the voxel layer with which the slice is associated.
    Syntax
    Public ReadOnly Property Layer As VoxelLayer
    public VoxelLayer Layer {get;}
    Example
    Get Voxel Layer for the Selected Slice in TOC
    {
      // Note: call within QueuedTask.Run()
      {
        voxelLayer = null;
        var slice = MapView.Active?.GetSelectedSlices()?.FirstOrDefault();
        if (slice != null)
        {
          voxelLayer = slice.Layer;
          //TODO - use the layer
        }
      }
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also