ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Core.Data.Analyst3D Namespace / TerrainPyramidType Enumeration
Example Example

In This Topic
    TerrainPyramidType Enumeration
    In This Topic
    Specifies the types of pyramids in the Terrain. See TerrainDefinition.GetPyramidType.
    Syntax
    Members
    MemberDescription
    WindowSize Window size pyramid type.
    ZTolerance Z tolerance pyramid type.
    Example
    Get Pyramid Information from a TerrainDefinition
    var pyramidType = terrainDef.GetPyramidType();
    var pyramidProps = terrainDef.GetPyramidWindowSizeProperties();
    
    var method = pyramidProps.Method;
    var threshold = pyramidProps.ZThreshold;
    var strategy = pyramidProps.ZThresholdStrategy;
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ArcGIS.Core.Data.Analyst3D.TerrainPyramidType

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.2 or higher.
    See Also