ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Core.CIM Namespace / CIMPointCloudFixedSizeAlgorithm Class
Members Example

In This Topic
    CIMPointCloudFixedSizeAlgorithm Class
    In This Topic
    Represents a point cloud fixed size algorithm.
    Object Model
    CIMPointCloudFixedSizeAlgorithm ClassCIMPointCloudFixedSizeAlgorithm ClassCIMPointCloudFixedSizeAlgorithm Class
    Syntax
    Example
    Edit The Renderer to use Fixed Size
    //Must be called on the MCT
    //var pcsl = ...;
    var def = pcsl.GetDefinition() as CIMPointCloudLayer;
    
    //Set the point shape and sizing on the renderer
    def.Renderer.PointShape = PointCloudShapeType.DiskShaded;
    var pointSize = new CIMPointCloudFixedSizeAlgorithm()
    {
      UseRealWorldSymbolSizes = false,
      Size = 8
    };
    def.Renderer.PointSizeAlgorithm = pointSize;
    //Commit changes back to the CIM
    pcsl.SetDefinition(def);
    Inheritance Hierarchy

    System.Object
       ArcGIS.Core.CIM.CIMObject
          ArcGIS.Core.CIM.CIMPointCloudAlgorithm
             ArcGIS.Core.CIM.CIMPointCloudFixedSizeAlgorithm

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also