ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Core.CIM Namespace / StatsHistogram Class / min Property
Example

In This Topic
    min Property (StatsHistogram)
    In This Topic
    Gets and sets the minimum.
    Syntax
    public Nullable<double> min {get; set;}
    Public Property min As Nullable(Of Double)
    Example
    Calculate Raster statistics
    //If a raster dataset has statistics, you can create a raster layer and get these statistics by accessing the colorizer.
    await QueuedTask.Run(() =>
    {
      //Accessing the raster layer
      var lyr = MapView.Active.Map.GetLayersAsFlattenedList().OfType<BasicRasterLayer>().FirstOrDefault();
      //Getting the colorizer
      var colorizer = lyr.GetColorizer() as CIMRasterStretchColorizer;
      //Accessing the statistics
      var stats = colorizer.StretchStats;
      var max = stats.max;
      var min = stats.min;
    });
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also