ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / PointCloudSceneLayer Class / RendererType Property
Example

In This Topic
    RendererType Property (PointCloudSceneLayer)
    In This Topic
    Gets the current RendererType
    Syntax
    public PointCloudRendererType RendererType {get;}
    Public ReadOnly Property RendererType As PointCloudRendererType
    Example
    Get PointCloudSceneLayer Renderer and RendererType
    //Must be called on the MCT
    //var pcsl = ...;
    CIMPointCloudRenderer cimGetPCLRenderer = pcsl.GetRenderer();
    //Can be one of Unknown, Stretch, ClassBreaks, UniqueValue, RGB
    PointCloudRendererType pclRendererType = pcsl.RendererType;
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also