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

CIMPointCloudLayer Class
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
//Must be called on the MCT
//var pcsl = ...;
var def = pcsl.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
pcsl.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, Windows 10

ArcGIS Pro version: 3 or higher.
See Also