public enum PointCloudShapeType : System.Enum, System.IComparable, System.IConvertible, System.IFormattable
Public Enum PointCloudShapeType Inherits System.Enum Implements System.IComparable, System.IConvertible, System.IFormattable
public enum PointCloudShapeType : System.Enum, System.IComparable, System.IConvertible, System.IFormattable
Public Enum PointCloudShapeType Inherits System.Enum Implements System.IComparable, System.IConvertible, System.IFormattable
Member | Description |
---|---|
DiskFlat | Disk shaped symbol with no shading. |
DiskShaded | Disk shaped symbol with shading. |
//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);
//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.DiskFlat;//default var scaleSize = new CIMPointCloudSplatAlgorithm() { MinSize = 8, ScaleFactor = 1.0 //100% }; def.Renderer.PointSizeAlgorithm = scaleSize; //Commit changes back to the CIM pcsl.SetDefinition(def);
System.Object
System.ValueType
System.Enum
ArcGIS.Core.CIM.PointCloudShapeType
Target Platforms: Windows 11, Windows 10, Windows 8.1