ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Core.Data.Raster Namespace / RasterBand Class / GetDefinition Method
Example

In This Topic
    GetDefinition Method (RasterBand)
    In This Topic
    Gets the RasterBandDefinition of this raster band. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    public new RasterBandDefinition GetDefinition()
    Public Shadows Function GetDefinition() As RasterBandDefinition

    Return Value

    The RasterBandDefinition of this raster band.
    Example
    Access the bands in a raster dataset
    var count = rasterDataset.GetBandCount();
    RasterBand rasterBandByName = rasterDataset.GetBandByName(sBandName);
    var index = rasterDataset.GetBandIndex(sBandName);
    
    // Get a RasterBand from the raster dataset
    RasterBand rasterBand = rasterDataset.GetBand(0);
    
    // Get the RasterBandDefinition from the raster band.
    RasterBandDefinition rasterBandDefinition = rasterBand.GetDefinition();
    // Get the name of the raster band from the raster band.
    string bandName = rasterBandDefinition.GetName();
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also