ArcGIS Pro 3.2 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 bool UseRealWorldSymbolSizes {get; set;}
    Public Property UseRealWorldSymbolSizes As Boolean
    Remarks
    This value should always be in sync with the UseRealWorldSymbolSizes property at the symbol level.
    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);
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also