RasterBandClass Class
Product Availability
Description
The RasterBand object represents an existing band of a raster dataset. This band may be the only band in a single raster dataset or one band in a multiband raster dataset.
A RasterBand can be obtained from a RasterDataset or a Raster using IRasterBandCollection::Item.
Supported Platforms
Extended Error Information
Use the ISupportErrorInfo method InterfaceSupportsErrorInfo to determine if the object supports extended error information. If the object supports extended error info, VC++ developers should use the OLE/COM IErrorInfo interface to access the ErrorInfo object. Visual Basic developers should use the global error object Err to retrieve this extended error information.
Interfaces
| Interfaces | Description |
|---|---|
| IClass (esriGeoDatabase) | Provides access to members that return information about and manage the class. |
| IDataset (esriGeoDatabase) | Provides access to members that supply dataset information. |
| IGeoDataset (esriGeoDatabase) | Provides access to members that provide information about a Geographic Dataset. |
| IMetadata (esriGeoDatabase) | Provides access to members that manage and update metadata. |
| IMetadataEdit (esriGeoDatabase) | Provides access to members that provide information about whether metadata can be edited. |
| INativeTypeInfo (esriGeoDatabase) | Provides access to the native type. |
| IObjectClass (esriGeoDatabase) | Provides access to members that return information about an object class. |
| IRasterBand | Provides access to members that control a raster band object. |
| IRasterBandColormap | Provides access to members that control the colormap of a raster band. |
| IRasterBandEdit | Provides access to members that control a raster band. |
| IRasterBandEdit2 | Provides access to members that control a raster band. |
| IRasterDataset (esriGeoDatabase) | Provides access to members that control a raster dataset. |
| IRasterProps | Provides access to members that control the most common raster properties. |
| IRasterPyramid | Provides access to members that control the pyramids for a raster dataset. |
| IRasterTable | Provides access to members that control a raster table. |
| IRasterTransaction | Provides access to members that provide undo support. |
| IRawBlocks | Provides access to members that control raw pixel block access. |
| IRawPixels | Provides access to members that control pixel reading and writing from a RasterBand. |
| ISupportErrorInfo | Indicates whether a specific interface can return Automation error objects. |
| ITable (esriGeoDatabase) | Provides access to members that return information about and manage tables. |
RasterBandClass Class的更多相关文章
随机推荐
- jQuery(2)——选择器
选择器 利用jQuery选择器,可以非常便捷和快速地找出特定的DOM元素,然后为它们添加相应的行为.jQuery的行为规则都必须在获取到元素后才能生效. [jQuery选择器的优势] (1)简洁的写法 ...
- jsp之用户自定义标签
创建一个类,引入外部jsp-api.jar包(在tomcat 下lib包里有),这个类继承SimpleTagSupport 重写doTag()方法. jspprojec包下的helloTag类: pu ...
- forEach用法介绍
array.forEach(callback[, thisArg]) forEach() 方法让数组的每一项都执行一次给定的函数. callback在数组每一项上执行的函数,接收三个参数: curre ...
- java代理的深入浅出(二)-CGLIB
java代理的深入浅出(二)-CGLIB 1.基本原理 CGLIB的原理就是生成一个要代理类的子类,子类重写要代理的类的所有不是final的方法.在子类中拦截所有父类方法的调用,拦截下来交给设置的Me ...
- 手把手教你ranorex_android自动化测试第一个示例
要说android的自动化,那真是折腾死我了,从早期的monkeyrunner,到后来的robotium,再到最新的uiautomator,各有各的问题,总之性价比都不够高,不太适合我的使用场景.于是 ...
- leetcode404-----简单的树的遍历
Find the sum of all left leaves in a given binary tree. Example: 3 / \ 9 20 / \ 15 7 There are two l ...
- 《JS权威指南学习总结--第二章词法结构》
第二章词法结构 内容要点: 一.注释 1. //表示单行注释 2. /*这里是一段注释*/ 3.一般编辑器里加注释是:选中要加注释的语句,按 ctrl+/ 二.直接量 所谓直接量,就是程序中直接使用的 ...
- java中的静态初始化块
Java 中可以通过初始化块进行数据赋值.如: 在类的声明中,可以包含多个初始化块,当创建类的实例时,就会依次执行这些代码块.如果使用 static 修饰初始化块,就称为静态初始化块. 需要特别注意: ...
- strlcpy() 函数
size_t strlcpy(char *dst, const char *src, size_t siz) { char *d = dst; const char *s = src; size_t ...
- As3.0 类的【枚举】
As3.0 类的枚举 “枚举”是您创建的一些自定义数据类型,用于封装一小组值.ActionScript 3.0 并不支持具体的枚举工具,这与 C++ 使用 enum 关键字或 Java 使用 En ...