IFieldEdit Interface 接口

时间:2022-01-05 09:59:10

Description

The IFieldEdit interface is used when creating new fields. You should not use it to modify fields, for that purpose use IClassSchemaEdit. In general, when modifying fields, the restrictions that apply in ArcCatalog also apply in ArcObjects; for example, you cannot change the name or type of a field.

Members

  All
Properties
Methods
Inherited
Non-inherited
Description
IFieldEdit Interface 接口 AliasName The alias name of the field.
IFieldEdit Interface 接口 AliasName The alias name of the field.
IFieldEdit Interface 接口 CheckValue Indicates if the value is valid given the field definition.
IFieldEdit Interface 接口 DefaultValue The default value of the field.
IFieldEdit Interface 接口 DefaultValue The default value of the field.
IFieldEdit Interface 接口 Domain The default domain of the field.
IFieldEdit Interface 接口 Domain The default domain of the field.
IFieldEdit Interface 接口 DomainFixed Indicates if the field's domain cannot be modified.
IFieldEdit Interface 接口 DomainFixed Indicates if the field's domain is fixed.
IFieldEdit Interface 接口 Editable Indicates if the field can be edited. This should always be set to true.
IFieldEdit Interface 接口 Editable Indicates if the field is editable.
IFieldEdit Interface 接口 GeometryDef The geometry definition for the field if IsGeometry is TRUE.
IFieldEdit Interface 接口 GeometryDef The geometry definition if IsGeometry is TRUE.
IFieldEdit Interface 接口 IsNullable Indicates if field values can be null.
IFieldEdit Interface 接口 IsNullable Indicates if the field can contain null values.
IFieldEdit Interface 接口 Length The maximum length, in bytes, for field values.
IFieldEdit Interface 接口 Length The maximum length, in bytes, for values described by the field.
IFieldEdit Interface 接口 Name The name of the field.
IFieldEdit Interface 接口 Name The name of the field.
IFieldEdit Interface 接口 Precision The precision for field values.
IFieldEdit Interface 接口 Precision The precision for field values.
IFieldEdit Interface 接口 Required Indicates if the field is required.
IFieldEdit Interface 接口 Required Indicates if the field is required.
IFieldEdit Interface 接口 Scale The scale for field values.
IFieldEdit Interface 接口 Scale The scale for field values.
IFieldEdit Interface 接口 Type The type for the field.
IFieldEdit Interface 接口 Type The type of the field.
IFieldEdit Interface 接口 VarType The VARTYPE of the field (e.g. VT_I4).

Inherited Interfaces

Interfaces Description
IField Provides access to members that return information about the field.

Classes that implement IFieldEdit

Classes Description
Field ESRI Field object.
 
 
[C#]

When using C# (and other .NET languages) you must append an "_2" to the property you want to set on this interface. For example fieldEdit.Name_2 = "NewFieldName".

IFieldEdit Interface 接口的更多相关文章

  1. as3.0 interface接口使用方法

    [转]as3.0 interface接口使用方法 AS在2.0的时候就支持接口了 接口能够让你的程序更具扩展性和灵活性,打个例如 比方你定义了一个方法 代码: public function aMet ...

  2. interface接口

    当一个抽象类中的方法都是抽象的时候,这时可以将该抽象类用另一种形式定义和表示,就是接口 interface. 定义接口使用的关键字不是class,是interface.接口中常见的成员: 这些成员都有 ...

  3. golang面向对象和interface接口

    一. golang面向对象介绍 1.golang也支持面向对象编程,但是和传统的面向对象编程有区别,并不是纯粹的面向对象语言.2.golang没有类(class),golang语言的结合体(struc ...

  4. Golang 入门系列(四)如何理解interface接口

    前面讲了很多Go 语言的基础知识,包括go环境的安装,go语言的语法等,感兴趣的朋友,可以先看看之前的文章.https://www.cnblogs.com/zhangweizhong/category ...

  5. go interface接口

    一:接口概要 接口是一种重要的类型,他是一组确定的方法集合. 一个接口变量可以存储任何实现了接口方法的具体值.一个重要的例子就是io.Reader和io.Writer type Reader inte ...

  6. java interface接口的传值方法

    A 类 package interface_test; public class A { private IPresenter ip; public A(IPresenter ip) { this.i ...

  7. JAVA 构造器, extends[继承], implements[实现], Interface[接口], reflect[反射], clone[克隆], final, static, abstrac

    记录一下: 构造器[构造函数]: 在java中如果用户编写类的时候没有提供构造函数,那么编译器会自动提供一个默认构造函数.它会把所有的实例字段设置为默认值:所有的数字变量初始化为0;所有的布尔变量设置 ...

  8. 011-对象——interface接口说明与使用方式实例

    <?php /** interface接口说明与使用方式实例 * * 接口里面的方法全是抽象方法,没有实体的方法.这样的类我们就叫做接口.定义的时候用Interface定义.实现接口时用impl ...

  9. Java Interface接口

    Java 中接口概念 接口可以理解为一种特殊的 类,由 全局常量 和 公共的抽象方法 所组成. 类是一种具体实现体,而接口定义了某一批类所需要遵循的规范,接口不关心这些类的内部数据, 也不关心这些类里 ...

随机推荐

  1. html如何和CSS联系起来

    CSS  <Cascading Style  Sheet>层叠样式表 .级联样式表,用于控制Web页面的外观: Html中使用CSS下面讲述2种常用方法: 1.连接式:可以实现CSS和Ht ...

  2. 浏览器对象模型BOM小结

    概念 BOM (Browser Object Model) 浏览器对象模型 BOM提供了独立于内容而与浏览器窗口进行交互的对象 BOM主要用于管理窗口与窗口之间的通讯,因此其核心对象是window B ...

  3. Linxu学习之03&lowbar;LInux文件与目录管理

    同样只介绍相关命令 这节相关主要的命令有这些: 1.目录的相关操作 cd----切换目录 pwd----显示当前目录 mkdir----新建一个新的目录 rmdir----删除一个空的目录

  4. 2016 - 1- 19 利用多线程优化从网上加载图片的Demo

    // // ZZTableViewController.m // 多图片下载 // // Created by Mac on 16/1/19. // Copyright © 2016年 Mac. Al ...

  5. Java入门-浅析Java学习从入门到精通【转】

    一. JDK (Java Development Kit)  JDK是整个Java的核心,包括了Java运行环境(Java Runtime Envirnment),一堆Java工具和Java基础的类库 ...

  6. uva 11396Claw Decomposotion(二分图判定&rpar;

     题目大意:给出一个简单无向图,每一个点的度为3.推断是否能将此图分解成若干爪的形式.使得每条边都仅仅出如今唯一的爪中. (点能够多次出如今爪中) 这道题实质上就是问这个图是否为二分图,dfs判定 ...

  7. 学到的较复杂的 mysql 语名

    需求是这样的:需要找出没有发任务的店铺是哪些.好让客服去联系他们,询问情况. 每个商家可以有N个店铺,每个店铺可以放N个任务,一个任务会生成N个任务订单,会员接到任务去完成 SELECT *FROM ...

  8. WPF从我炫系列4---装饰控件的用法

    这一节的讲解中,我将为大家介绍WPF装饰控件的用法,主要为大家讲解一下几个控件的用法. ScrollViewer滚动条控件 Border边框控件 ViewBox*缩放控件 1. ScrollView ...

  9. 算法(第四版)C&num; 习题题解——1&period;4

    写在前面 整个项目都托管在了 Github 上:https://github.com/ikesnowy/Algorithms-4th-Edition-in-Csharp 这一节内容可能会用到的库文件有 ...

  10. centos7安装Jenkins及其卸载

    首先安装好Java(Java_home) 查看Java版本 # java -version 如果没安装,依照以下我的另一篇博客进行安装 https://www.cnblogs.com/djlsunsh ...