ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Core.CIM Namespace / CIMPointCloudFixedSizeAlgorithm Class / UseRealWorldSymbolSizes Property
Example

In This Topic
    UseRealWorldSymbolSizes Property (CIMPointCloudFixedSizeAlgorithm)
    In This Topic
    Gets or sets a value indicating whether to use real world symbols sizes (meters) vs. points.
    Syntax
    Public Property UseRealWorldSymbolSizes As Boolean
    public bool UseRealWorldSymbolSizes {get; set;}
    Remarks
    This value should always be in sync with the UseRealWorldSymbolSizes property at the symbol level.
    Example
    Edit The Renderer to use Fixed Size
    {
      // Note: call within QueuedTask.Run()
      {
        var def = pointCloudSceneLayer.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
        pointCloudSceneLayer.SetDefinition(def);
      }
    }
    Requirements

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

    ArcGIS Pro version: 3.0 or higher.
    See Also