ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Core.Data.Analyst3D Namespace / TerrainWindowSizeProperties Class / ZThreshold Property
Example

In This Topic
    ZThreshold Property
    In This Topic
    Gets the secondary thinning threshold.
    Syntax
    Public ReadOnly Property ZThreshold As Double
    public double ZThreshold {get;}
    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;
    }
    Requirements

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

    ArcGIS Pro version: 3.2 or higher.
    See Also