Provides access to members that control editing of a RasterDataset.
Members
Name | Description | |
---|---|---|
AlterAttributeTable | Alters the raster attribute table. | |
AlterColormap | Alters colormap. | |
AppendNewBand | Appends a new raster band. | |
BuildAttributeTable | Builds the raster attribute table. | |
CanAlterAttributeTable | Indicates if the raster attribute table can be altered. | |
ComputeStats | Calculates statistics and histograms from a given pyramid level. | |
DeleteAttributeTable | Deletes the raster attribute table. | |
DeleteColormap | Deletes colormap. | |
DeleteStats | Deletes statistics and histograms. | |
Erase | Erases a rectanglar area of this RasterDataset. | |
Mosaic | Mosaics a Raster into this RasterDataset. | |
MosaicBands | Mosaics a Raster into this RasterDataset at a given starting band index. |
IRasterDatasetEdit2.AlterAttributeTable Method
Alters the raster attribute table.
Public Sub AlterAttributeTable ( _
ByVal newTable As ITable _
)
public void AlterAttributeTable (
ITable newTable
);
IRasterDatasetEdit2.BuildAttributeTable Method
Builds the raster attribute table.
Public Sub BuildAttributeTable ( _
)
public void BuildAttributeTable (
);
IRasterDatasetEdit2.CanAlterAttributeTable Property
Indicates if the raster attribute table can be altered.
Public ReadOnly Property CanAlterAttributeTable As Boolean
public bool CanAlterAttributeTable {get;}
IRasterDatasetEdit2.DeleteAttributeTable Method
Deletes the raster attribute table.
Public Sub DeleteAttributeTable ( _
)
public void DeleteAttributeTable (
);
Inherited Interfaces
Interfaces | Description |
---|---|
IRasterDatasetEdit | Provides access to members that control raster dataset level editing operations. |
Classes that implement IRasterDatasetEdit2
Classes | Description |
---|---|
RasterDataset (esriDataSourcesRaster) | A representation of a raster dataset on disk. |
Remarks
IRasterDatasetEdit2 provides access to manipulate the raster attribute table of a single band raster dataset. BuildAttributeTable builds the default raster attribute table for the raster, with value and count. AlterAttributeTable alters the raster attribute table of the raster with the given table.