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

In This Topic
    TerrainWindowSizeMethod Enumeration
    In This Topic
    Syntax
    public enum TerrainWindowSizeMethod : System.Enum, System.IComparable, System.IConvertible, System.IFormattable  
    Public Enum TerrainWindowSizeMethod 
       Inherits System.Enum
       Implements System.IComparable, System.IConvertible, System.IFormattable 
    Members
    MemberDescription
    ZAverage Average Z (point at which the Z value is the closest to the average).
    ZMaximum Z maximum.
    ZMinimum Z minimum.
    ZMinZMax Minimum or maximum Z.
    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.TerrainWindowSizeMethod

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.2 or higher.
    See Also