ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Core.CIM Namespace / CIMPointCloudLayer Class
Members Example

In This Topic
    CIMPointCloudLayer Class
    In This Topic
    Represents a point cloud layer.
    Object Model
    CIMPointCloudLayer ClassCIMPointCloudLayer ClassCIMSceneDataConnection ClassCIMEyeDomeLighting ClassCIMPointCloudLayer ClassCIM3DLayerProperties ClassCIMLayerElevationSurface ClassCIMLayerScaleVisibilityOptions ClassCIMLayerTemplate ClassCIMPopupInfo ClassCIMPointCloudRenderer ClassTimeInstant ClassTimeExtent Class
    Syntax
    Example
    Edit Color Modulation
    {
      // Note: call within QueuedTask.Run()
      {
        var def = pointCloudSceneLayer.GetDefinition() as CIMPointCloudLayer;
        //Get the ColorModulation off the renderer
        var modulation = def.Renderer.ColorModulation;
        if (modulation == null)
          modulation = new CIMColorModulationInfo();
        //Set the minimum and maximum intensity as needed
        modulation.MinValue = 0;
        modulation.MaxValue = 100.0;
        //apply back
        def.Renderer.ColorModulation = modulation;
        //Commit changes back to the CIM
        pointCloudSceneLayer.SetDefinition(def);
      }
    }
    Inheritance Hierarchy

    System.Object
       ArcGIS.Core.CIM.CIMObject
          ArcGIS.Core.CIM.CIMDefinition
             ArcGIS.Core.CIM.CIMBaseLayer
                ArcGIS.Core.CIM.CIMPointCloudLayer

    Requirements

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

    ArcGIS Pro version: 3.0 or higher.
    See Also