Public Shadows Function GetDefinition() As RasterBandDefinition
public new RasterBandDefinition GetDefinition()
Return Value
The RasterBandDefinition of this raster band.
Public Shadows Function GetDefinition() As RasterBandDefinition
public new RasterBandDefinition GetDefinition()
{
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();
}
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)